You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
335 B
19 lines
335 B
// FIXME: Check IR rather than asm, then triple is not needed.
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited -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;
|
|
}
|