Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / modern-write-bf-abi.mm
blobfa127f0b13bd75a69f4fae6a37973322a0082285
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
4 // -Did="void*" -DSEL="void *" -DClass="void*"
5 @interface NSMutableArray {
6   id isa;
8 @end
10 typedef unsigned char BOOL;
11 typedef unsigned long NSUInteger;
13 __attribute__((visibility("hidden")))
14 @interface __NSArrayM : NSMutableArray {
15     NSUInteger _used;
16     NSUInteger _doHardRetain:1;
17     NSUInteger _doWeakAccess:1;
18 #if __LP64__
19     NSUInteger _size:62;
20 #else
21     NSUInteger _size:30;
22 #endif
23     NSUInteger _hasObjects:1;
24     NSUInteger _hasStrongReferences:1;
25 #if __LP64__
26     NSUInteger _offset:62;
27 #else
28     NSUInteger _offset:30;
29 #endif
30     unsigned long _mutations;
31     id *_list;
33 @end
36 id __CFAllocateObject2();
37 BOOL objc_collectingEnabled();
39 @implementation __NSArrayM
40 + (id)__new:(const id [])objects :(NSUInteger)count :(BOOL)hasObjects :(BOOL)hasStrong :(BOOL)transferRetain {
41     __NSArrayM *newArray = (__NSArrayM *)__CFAllocateObject2();
42     newArray->_size = count;
43     newArray->_mutations = 1;
44     newArray->_doHardRetain = (hasObjects && hasStrong);
45     newArray->_doWeakAccess = (objc_collectingEnabled() && !hasStrong);
46     newArray->_hasObjects = hasObjects;
47     newArray->_hasStrongReferences = hasStrong;
48     newArray->_list = 0;
49     return *newArray->_list;
51 @end
53 // Test2
54 @interface Super {
55   int ivar_super_a : 5;
57 @end
59 @interface A : Super {
60 @public
61   int ivar_a : 5;
63 @end
65 int f0(A *a) {
66   return a->ivar_a;
69 @interface A () {
70 @public
71   int ivar_ext_a : 5;
72   int ivar_ext_b : 5;
73 }@end
75 int f1(A *a) {
76   return a->ivar_ext_a + a->ivar_a;
79 @interface A () {
80 @public
81   int ivar_ext2_a : 5;
82   int ivar_ext2_b : 5;
83 }@end
85 int f2(A* a) {
86   return a->ivar_ext2_a + a->ivar_ext_a + a->ivar_a;
89 @implementation A {
90 @public
91   int ivar_b : 5;
92   int ivar_c : 5;
93   int ivar_d : 5;
95 @end
97 int f3(A *a) {  
98   return a->ivar_d + a->ivar_ext2_a + a->ivar_ext_a + a->ivar_a;
101 __attribute__((objc_root_class)) @interface Base
103     struct objc_class *isa;
104     int full;
105     int full2: 32;
106     int _refs: 8;
107     int field2: 3;
108     unsigned f3: 8;
109     short cc;
110     unsigned g: 16;
111     int r2: 8;
112     int r3: 8;
113     int r4: 2;
114     int r5: 8;
115     char c;
117 @end
119 @implementation Base @end