Files
clang-p2996/clang/test/CodeGenObjC/debug-info-ivars-private.m
David Blaikie 86eac722f9 Simplify/generalize some debug info test cases
Mostly, try to depend on the annotation comments more so these tests are more
legible, brief, and agnostic to schema changes in the future (sure, they're not
agnostic to changes to the comment annotations but since they're easier to read
they should be easier to update if that happens).

llvm-svn: 177457
2013-03-19 23:10:14 +00:00

37 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]