Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-id-with-protocol.m
blob38f69ef3890154c66b9f8f040d1da7a4935c17fb
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2 __attribute((objc_root_class)) @interface NSObject {
3         id isa;
5 + (id)alloc;
6 - (id)init;
7 - (id)retain;
8 @end
10 void NSLog(id, ...);
12 @protocol MyProtocol
14 -(const char *)hello;
16 @end
18 @interface MyClass : NSObject {
21 @property (nonatomic, assign) id <MyProtocol> bad_carrier;
22 @property (nonatomic, assign) id good_carrier;
24 @end
26 @implementation MyClass
27 @end
29 int main(void)
31     @autoreleasepool
32     {
33         MyClass *my_class = [MyClass alloc];
34         NSLog(@"%p\n", my_class.bad_carrier);
35         NSLog(@"%p\n", my_class.good_carrier);
36     }
38 // Verify that the debug type for both variables is 'id'.
39 // CHECK:  ![[IDTYPE:[0-9]+]] = !DIDerivedType(tag: DW_TAG_typedef, name: "id"
41 // CHECK:  !DILocalVariable(name: "bad_carrier", arg:
42 // CHECK-NOT:               line:
43 // CHECK-SAME:              type: ![[IDTYPE]]
45 // CHECK:  !DILocalVariable(name: "good_carrier", arg:
46 // CHECK-NOT:               line:
47 // CHECK-SAME:              type: ![[IDTYPE]]