blob: e0cac9850f25880ef044164145b3bd052c3db6cd [file] [log] [blame]
// FIXME: Check IR rather than asm, then triple is not needed.
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -g -masm-verbose -x objective-c < %s | 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;
}