aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-11-20 00:40:21 +0000
committerBill Wendling <isanbard@gmail.com>2009-11-20 00:40:21 +0000
commit2aef1e6b29c5d584bfdb1a1bc1d674f986108771 (patch)
tree6fb3993d8d2993b701aa57cf34240d7ed00719e1 /test/FrontendC
parentd45acc97e4b6a2854810c0a8076df3907e7be6e7 (diff)
downloadexternal_llvm-2aef1e6b29c5d584bfdb1a1bc1d674f986108771.zip
external_llvm-2aef1e6b29c5d584bfdb1a1bc1d674f986108771.tar.gz
external_llvm-2aef1e6b29c5d584bfdb1a1bc1d674f986108771.tar.bz2
Specify proper arch and triple for 64-bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89418 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC')
-rw-r--r--test/FrontendC/cstring-align.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC/cstring-align.c b/test/FrontendC/cstring-align.c
index 1320dd3..80f97f8 100644
--- a/test/FrontendC/cstring-align.c
+++ b/test/FrontendC/cstring-align.c
@@ -1,5 +1,5 @@
// RUN: %llvmgcc %s -c -Os -m32 -emit-llvm -o - | llc -march=x86 -mtriple=i386-apple-darwin10 | FileCheck %s -check-prefix=DARWIN32
-// RUN: %llvmgcc %s -c -Os -m64 -emit-llvm -o - | llc -march=x86 -mtriple=i386-apple-darwin10 | FileCheck %s -check-prefix=DARWIN64
+// RUN: %llvmgcc %s -c -Os -m64 -emit-llvm -o - | llc -march=x86_64 -mtriple=x86_64-apple-darwin10 | FileCheck %s -check-prefix=DARWIN64
extern void func(const char *, const char *);