teak-llvm/clang/test/CodeGenObjC/link-errors.m
Daniel Dunbar c01f56c8de Add some Objective-C code generation tests.
- Note that these don't really test anything other than that code
   generation doesn't fail or crash. Better than nothing though!

llvm-svn: 55761
2008-09-04 04:36:23 +00:00

40 lines
704 B
Objective-C

// RUN: clang -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep '.lazy_reference .objc_class_name_A' %t | count 1 &&
// RUN: grep '.lazy_reference .objc_class_name_Unknown' %t | count 1 &&
// RUN: grep '.lazy_reference .objc_class_name_Protocol' %t | count 1 &&
// RUN: clang -DWITH_IMPL -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep '.lazy_reference .objc_class_name_Root' %t | count 1
@interface Root
-(id) alloc;
-(id) init;
@end
@protocol P;
@interface A : Root
@end
@interface A (Category)
+(void) foo;
@end
#ifdef WITH_IMPL
@implementation A
@end
#endif
@interface Unknown
+test;
@end
int main() {
id x = @protocol(P);
[ A alloc ];
[ A foo ];
[ Unknown test ];
return 0;
}