minix/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-ivars-private.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

36 lines
795 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -g %s -o - | FileCheck %s
// 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
// CHECK: {{.*}} [ DW_TAG_member ] [foo] [line 14, size 32, align 32, offset 0] [protected] [from int]
// CHECK: {{.*}} [ DW_TAG_member ] [bar] [line 27, size 32, align 32, offset 0] [private] [from int]