Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s
      2 
      3 // CHECK: AT_APPLE_objc_complete_type
      4 
      5 @interface I1
      6 @end
      7 
      8 @implementation I1 {
      9 int myi2;
     10 }
     11 int myi;
     12 @end
     13 
     14 void foo(I1 *iptr) {}
     15 
     16