diff options
author | Bradley Smith <bradley.smith@arm.com> | 2014-10-13 11:18:05 +0000 |
---|---|---|
committer | Bradley Smith <bradley.smith@arm.com> | 2014-10-13 11:18:05 +0000 |
commit | 76d2e24bb8e61c2b416aa1d6d73aa1619ae9d28d (patch) | |
tree | dff7c3bce1cbe0f4723b4e3989bfc9a9ff4c3149 | |
parent | 5886bc35b0ee3b2eb953741e974073ff815cb999 (diff) | |
download | bcm5719-llvm-76d2e24bb8e61c2b416aa1d6d73aa1619ae9d28d.tar.gz bcm5719-llvm-76d2e24bb8e61c2b416aa1d6d73aa1619ae9d28d.zip |
[AArch64] Fixup test from A53 erratum patch after buildbot failures
Don't include stdint.h directly, instead typedef int64_t which is all we need.
llvm-svn: 219608
-rw-r--r-- | clang/test/Driver/aarch64-fix-cortex-a53-835769-cg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/aarch64-fix-cortex-a53-835769-cg.c b/clang/test/Driver/aarch64-fix-cortex-a53-835769-cg.c index efe60c9aaf1..f2f3abf9cfe 100644 --- a/clang/test/Driver/aarch64-fix-cortex-a53-835769-cg.c +++ b/clang/test/Driver/aarch64-fix-cortex-a53-835769-cg.c @@ -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); |