diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-11-20 00:40:21 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-11-20 00:40:21 +0000 |
commit | 0fe60c79fb46fda09faf5d65f883423487b6ed1b (patch) | |
tree | 6fb3993d8d2993b701aa57cf34240d7ed00719e1 /test/FrontendC/cstring-align.c | |
parent | b3fa7e4e40d7a20e7ff9b5feab61ae01d5dcf661 (diff) |
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/cstring-align.c')
-rw-r--r-- | test/FrontendC/cstring-align.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC/cstring-align.c b/test/FrontendC/cstring-align.c index 1320dd349b..80f97f8c9a 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 *); |