Home | History | Annotate | Download | only in CodeGenObjC
      1 // FIXME: Check IR rather than asm, then triple is not needed.
      2 // RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -g %s -o - | FileCheck %s
      3 
      4 // CHECK: AT_APPLE_property_name
      5 @interface C {
      6   int _base;
      7 }
      8 @property int base;
      9 @end
     10 
     11 @implementation C
     12 @synthesize base = _base;
     13 @end
     14 
     15 void foo(C *cptr) {}
     16