Trying to make BuildBot happy again (related to PR7431).

llvm-svn: 106553
This commit is contained in:
Fariborz Jahanian 2010-06-22 17:08:32 +00:00
parent 6e57c35513
commit a9f90275cc
1 changed files with 7 additions and 3 deletions

View File

@ -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]' // RUN: %clang_cc1 -triple i386-apple-darwin9 -emit-llvm -o - %s | FileCheck %s
// XFAIL: *
// XTARGET: darwin9
// PR7431 // 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 @interface A
@end @end
@interface A(foo) @interface A(foo)
@ -11,3 +14,4 @@
- (void)foo_myStuff { - (void)foo_myStuff {
} }
@end @end