Specify proper arch and triple for 64-bit.

llvm-svn: 89418
This commit is contained in:
Bill Wendling 2009-11-20 00:40:21 +00:00
parent 7dc8d2d025
commit c0cc2ae45b
1 changed files with 1 additions and 1 deletions

View File

@ -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 *);