Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -S -g -masm-verbose -x objective-c < %s | grep DW_AT_name
      2 @interface Foo {
      3   int i;
      4 }
      5 @property int i;
      6 @end
      7 
      8 @implementation Foo
      9 @synthesize i;
     10 @end
     11 
     12 int bar(Foo *f) {
     13   int i = 1;
     14   f.i = 2;
     15   i = f.i;
     16   return i;
     17 }
     18