r219608 - [AArch64] Fixup test from A53 erratum patch after buildbot failures

Bradley Smith bradley.smith at arm.com
Mon Oct 13 04:18:05 PDT 2014


Author: brasmi01
Date: Mon Oct 13 06:18:05 2014
New Revision: 219608

URL: http://llvm.org/viewvc/llvm-project?rev=219608&view=rev
Log:
[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.

Modified:
    cfe/trunk/test/Driver/aarch64-fix-cortex-a53-835769-cg.c

Modified: cfe/trunk/test/Driver/aarch64-fix-cortex-a53-835769-cg.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/aarch64-fix-cortex-a53-835769-cg.c?rev=219608&r1=219607&r2=219608&view=diff
==============================================================================
--- cfe/trunk/test/Driver/aarch64-fix-cortex-a53-835769-cg.c (original)
+++ cfe/trunk/test/Driver/aarch64-fix-cortex-a53-835769-cg.c Mon Oct 13 06:18:05 2014
@@ -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);





More information about the cfe-commits mailing list