blob: 512ad897c7feab687d04ea5f076a9e2270c1c2b2 [file] [log] [blame]
Daniel Dunbar74d4b122009-05-15 22:33:15 +00001// RUNX: llvm-gcc -m64 -emit-llvm -S -o %t %s &&
Daniel Dunbarb19f0ac2010-04-26 10:58:19 +00002// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -emit-llvm -o %t %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00003// RUN: grep '@".01L_OBJC_LABEL_NONLAZY_CLASS_$" = internal global \[1 x .*\] .*@"OBJC_CLASS_$_A".*, section "__DATA, __objc_nlclslist, regular, no_dead_strip", align 8' %t
4// RUN: grep '@".01L_OBJC_LABEL_NONLAZY_CATEGORY_$" = internal global \[1 x .*\] .*@".01l_OBJC_$_CATEGORY_A_$_Cat".*, section "__DATA, __objc_nlcatlist, regular, no_dead_strip", align 8' %t
Daniel Dunbar74d4b122009-05-15 22:33:15 +00005
6@interface A @end
7@implementation A
8+(void) load {
9}
10@end
11
12@interface A (Cat) @end
13@implementation A (Cat)
14+(void) load {
15}
16@end
17
18@interface B @end
19@implementation B
20-(void) load {
21}
22@end
23
24@interface B (Cat) @end
25@implementation B (Cat)
26-(void) load {
27}
28@end
29
Daniel Dunbar85a3b032009-05-18 16:49:49 +000030@interface C : A @end
31@implementation C
32@end