diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-06-22 17:08:32 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-06-22 17:08:32 +0000 |
commit | a9f90275cc4a9b9c586fb9707ece5a72c7d4dc8f (patch) | |
tree | ca327f73878a37ca5c16a8f12c167d904b116b7f | |
parent | 6e57c35513497c2d9189f067e0ff4c25e53600fc (diff) | |
download | bcm5719-llvm-a9f90275cc4a9b9c586fb9707ece5a72c7d4dc8f.tar.gz bcm5719-llvm-a9f90275cc4a9b9c586fb9707ece5a72c7d4dc8f.zip |
Trying to make BuildBot happy again (related to PR7431).
llvm-svn: 106553
-rw-r--r-- | clang/test/CodeGenObjC/category-class.m | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/clang/test/CodeGenObjC/category-class.m b/clang/test/CodeGenObjC/category-class.m index ae173ce7e09..22d197380f3 100644 --- a/clang/test/CodeGenObjC/category-class.m +++ b/clang/test/CodeGenObjC/category-class.m @@ -1,7 +1,10 @@ -// RUN: %clang -c %s -o %t.o && libtool -static -o libcodegentest.a %t.o && %clang -bundle -o codegentestbundle -L. -lcodegentest -Wl,-ObjC && nm codegentestbundle | grep -F '[A(foo) foo_myStuff]' -// XFAIL: * -// XTARGET: darwin9 +// RUN: %clang_cc1 -triple i386-apple-darwin9 -emit-llvm -o - %s | FileCheck %s // PR7431 + +// CHECK: module asm "\09.lazy_reference .objc_class_name_A" +// CHECK: module asm "\09.objc_category_name_A_foo=0" +// CHECK: module asm "\09.globl .objc_category_name_A_foo" + @interface A @end @interface A(foo) @@ -11,3 +14,4 @@ - (void)foo_myStuff { } @end + |