[cfe-commits] r82101 - /cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m
Daniel Dunbar
daniel at zuster.org
Wed Sep 16 17:28:00 PDT 2009
Author: ddunbar
Date: Wed Sep 16 19:28:00 2009
New Revision: 82101
URL: http://llvm.org/viewvc/llvm-project?rev=82101&view=rev
Log:
Force triple, although probably the real fix is to tie __strong to -fobjc-gc.
Modified:
cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m
Modified: cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m?rev=82101&r1=82100&r2=82101&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m (original)
+++ cfe/trunk/test/CodeGenObjC/objc-assign-ivar.m Wed Sep 16 19:28:00 2009
@@ -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 @@
foo->idx[++counter] = 15;
ASSIGNTEST(foo->obj[foo->idx[2]], IvarAssigns); // objc_assign_ivar
}
-
More information about the cfe-commits
mailing list