diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-17 00:28:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-17 00:28:00 +0000 |
commit | c8930d6b15287c03fc29563b329f1b6353092769 (patch) | |
tree | 7fce76da5178bd7c16df13fc30f83353a3ac52ea | |
parent | d4347cb9e2e322db75bdcf419ba02ac1565f615e (diff) |
Force triple, although probably the real fix is to tie __strong to -fobjc-gc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82101 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/objc-assign-ivar.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGenObjC/objc-assign-ivar.m b/test/CodeGenObjC/objc-assign-ivar.m index 002b5c156e..0e8478b445 100644 --- a/test/CodeGenObjC/objc-assign-ivar.m +++ b/test/CodeGenObjC/objc-assign-ivar.m @@ -1,4 +1,4 @@ -// RUN: clang-cc -fnext-runtime -fobjc-gc -fobjc-newgc-api -emit-llvm -o %t %s && +// RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -fobjc-newgc-api -emit-llvm -o %t %s && // RUN: grep -F '@objc_assign_ivar' %t | count 14 && // RUN: true @@ -51,4 +51,3 @@ void testIvars() { foo->idx[++counter] = 15; ASSIGNTEST(foo->obj[foo->idx[2]], IvarAssigns); // objc_assign_ivar } - |