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 @interface I1 {
      5 int p1;
      6 }
      7 @property int p1;
      8 @end
      9 
     10 @implementation I1
     11 @synthesize p1;
     12 @end
     13