freebsd-dev/test/CodeGenObjC/property-dbg.m
2010-04-06 15:53:59 +00:00

18 lines
248 B
Objective-C

// RUN: %clang_cc1 -S -g -masm-verbose -x objective-c < %s | grep setI | grep DW_AT_name
@interface Foo {
int i;
}
@property int i;
@end
@implementation Foo
@synthesize i;
@end
int bar(Foo *f) {
int i = 1;
f.i = 2;
i = f.i;
return i;
}