Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
      2 
      3 // CHECK: AT_APPLE_property_name
      4 // CHECK: AT_APPLE_property_attribute
      5 // CHECK: AT_APPLE_property
      6 @interface I1 {
      7 int p1;
      8 }
      9 @property int p1;
     10 @end
     11 
     12 @implementation I1
     13 @synthesize p1;
     14 @end
     15