Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / instance-method-metadata.m
blob7c9014d8c51eb0876c393779c0254c560e37b22d
1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -S %s -o - | FileCheck %s
4 /** The problem looks like clang getting confused when a single translation unit 
5     contains a protocol with a property and two classes that implement that protocol 
6     and synthesize the property.
7 */
9 @protocol Proto
10 @property (assign) id prop;
11 @end
13 @interface NSObject @end
15 @interface Foo : NSObject <Proto> { int x; } @end
17 @interface Bar : NSObject <Proto> @end
19 @implementation Foo
20 @synthesize prop;
21 @end
23 @implementation Bar
24 @synthesize prop;
25 @end
27 // CHECK: _OBJC_$_INSTANCE_METHODS_Bar:
28 // CHECK-NEXT:        .long   24
29 // CHECK-NEXT:        .long   2
30 // CHECK-NEXT:        .quad   L_OBJC_METH_VAR_NAME_
31 // CHECK-NEXT:        .quad   L_OBJC_METH_VAR_TYPE_
32 // CHECK-NEXT:        .quad   "-[Bar prop]"