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 -debug-info-kind=limited %s -o - | FileCheck %s
      3 
      4 // CHECK: AT_APPLE_property_name
      5 // CHECK: AT_APPLE_property_attribute
      6 // CHECK: AT_APPLE_property
      7 @interface I1 {
      8 int p1;
      9 }
     10 @property int p1;
     11 @end
     12 
     13 @implementation I1
     14 @synthesize p1;
     15 @end
     16