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 // CHECK: AT_APPLE_objc_complete_type 4 5 @interface Foo {} @end 6 7 @interface Foo () { 8 int *bar; 9 } 10 @end 11 12 @implementation Foo 13 @end 14 15 void bar(Foo *fptr) {} 16