diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-13 22:48:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-13 22:48:51 +0000 |
commit | 0d794b20b9b00f0f19c1d8af8a4c6ef1372a4d17 (patch) | |
tree | fa225423c558924041da8c2fb719ab76e9853a5f /test/CodeGenObjC/link-errors.m | |
parent | 7644f0726c310ec4224085eaea5f9aff8b957d90 (diff) |
Force triple for a couple test cases.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjC/link-errors.m')
-rw-r--r-- | test/CodeGenObjC/link-errors.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenObjC/link-errors.m b/test/CodeGenObjC/link-errors.m index 8e0a0ecde9..c25fe675ce 100644 --- a/test/CodeGenObjC/link-errors.m +++ b/test/CodeGenObjC/link-errors.m @@ -1,8 +1,8 @@ -// RUN: clang -fnext-runtime -emit-llvm -o %t %s && +// RUN: clang -triple i386-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s && // RUN: grep '.lazy_reference .objc_class_name_A' %t | count 1 && // RUN: grep '.lazy_reference .objc_class_name_Unknown' %t | count 1 && // RUN: grep '.lazy_reference .objc_class_name_Protocol' %t | count 1 && -// RUN: clang -DWITH_IMPL -fnext-runtime -emit-llvm -o %t %s && +// RUN: clang -triple i386-apple-darwin9 -DWITH_IMPL -fnext-runtime -emit-llvm -o %t %s && // RUN: grep '.lazy_reference .objc_class_name_Root' %t | count 1 @interface Root |