// 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
@interfaceFoo{int i;}@propertyint i;@end@implementationFoo@synthesize i;@endintbar(Foo *f){int i =1;
f.i=2;
i = f.i;return i;}