From e883df943801b8911398a598608b3db0116db9aa Mon Sep 17 00:00:00 2001 From: Bradley Smith Date: Mon, 13 Oct 2014 11:18:05 +0000 Subject: [PATCH] [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. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Driver/aarch64-fix-cortex-a53-835769-cg.c b/test/Driver/aarch64-fix-cortex-a53-835769-cg.c index efe60c9aaf..f2f3abf9cf 100644 --- a/test/Driver/aarch64-fix-cortex-a53-835769-cg.c +++ b/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 +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); -- 2.40.0