2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
|
2013-03-07 06:03:30 +08:00
|
|
|
|
|
|
|
// Debug symbols for private ivars. This test ensures that we are
|
|
|
|
// generating debug info for ivars added by the implementation.
|
|
|
|
__attribute((objc_root_class)) @interface NSObject {
|
|
|
|
id isa;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol Protocol
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Delegate : NSObject<Protocol> {
|
|
|
|
@protected int foo;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Delegate(NSObject)
|
|
|
|
- (void)f;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Delegate(NSObject)
|
|
|
|
- (void)f { return; }
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Delegate {
|
|
|
|
int bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)g:(NSObject*) anObject {
|
|
|
|
bar = foo;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2015-04-30 00:40:08 +08:00
|
|
|
// CHECK: !DIDerivedType(tag: DW_TAG_member, name: "foo"
|
2015-03-04 01:25:55 +08:00
|
|
|
// CHECK-SAME: line: 14
|
|
|
|
// CHECK-SAME: baseType: ![[INT:[0-9]+]]
|
|
|
|
// CHECK-SAME: size: 32, align: 32,
|
|
|
|
// CHECK-NOT: offset:
|
|
|
|
// CHECK-SAME: flags: DIFlagProtected
|
2015-04-30 00:40:08 +08:00
|
|
|
// CHECK: ![[INT]] = !DIBasicType(name: "int"
|
|
|
|
// CHECK: !DIDerivedType(tag: DW_TAG_member, name: "bar"
|
2015-03-04 01:25:55 +08:00
|
|
|
// CHECK-SAME: line: 27
|
|
|
|
// CHECK-SAME: baseType: ![[INT:[0-9]+]]
|
|
|
|
// CHECK-SAME: size: 32, align: 32,
|
|
|
|
// CHECK-NOT: offset:
|
|
|
|
// CHECK-SAME: flags: DIFlagPrivate
|