]> granicus.if.org Git - clang/commitdiff
[AArch64] Fixup test from A53 erratum patch after buildbot failures
authorBradley Smith <bradley.smith@arm.com>
Mon, 13 Oct 2014 11:18:05 +0000 (11:18 +0000)
committerBradley Smith <bradley.smith@arm.com>
Mon, 13 Oct 2014 11:18:05 +0000 (11:18 +0000)
Don't include stdint.h directly, instead typedef int64_t which is all we need.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219608 91177308-0d34-0410-b5e6-96231b3b80d8

test/Driver/aarch64-fix-cortex-a53-835769-cg.c

index efe60c9aaf1ecf5bea9deda6973b227da156f059..f2f3abf9cfe2a757a269098b10339857d825f880 100644 (file)
@@ -6,7 +6,7 @@
 // RUN: %clang -O3 -target aarch64-linux-eabi -mno-fix-cortex-a53-835769 %s -S -o- 2>&1 \
 // RUN:   | FileCheck --check-prefix=CHECK-NO --check-prefix=CHECK %s
 
-#include <stdint.h>
+typedef long int64_t;
 
 int64_t f_load_madd_64(int64_t a, int64_t b, int64_t *c) {
     int64_t result = a+b*(*c);