[cfe-commits] r106494 - /cfe/trunk/test/CodeGenObjC/category-class.m

Fariborz Jahanian fjahanian at apple.com
Mon Jun 21 15:21:58 PDT 2010


Author: fjahanian
Date: Mon Jun 21 17:21:57 2010
New Revision: 106494

URL: http://llvm.org/viewvc/llvm-project?rev=106494&view=rev
Log:
Test case for PR7431 by Nico Weber.


Added:
    cfe/trunk/test/CodeGenObjC/category-class.m

Added: cfe/trunk/test/CodeGenObjC/category-class.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/category-class.m?rev=106494&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenObjC/category-class.m (added)
+++ cfe/trunk/test/CodeGenObjC/category-class.m Mon Jun 21 17:21:57 2010
@@ -0,0 +1,13 @@
+// RUN: %clang -c %s -o %t && libtool -static -o libcodegentest.a %t && %clang -bundle -o codegentestbundle -L. -lcodegentest -Wl,-ObjC && nm codegentestbundle | grep -F '[A(foo) foo_myStuff]'
+// XFAIL: *
+// XTARGET: darwin9
+// PR7431
+ at interface A
+ at end
+ at interface A(foo)
+- (void)foo_myStuff;
+ at end
+ at implementation A(foo)
+- (void)foo_myStuff {
+}
+ at end





More information about the cfe-commits mailing list