1*0a6a1f1dSLionel Sambuc// FIXME: Check IR rather than asm, then triple is not needed. 2*0a6a1f1dSLionel Sambuc// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -g %s -o - | FileCheck %s 3f4a2713aSLionel Sambuc// CHECK: AT_APPLE_objc_complete_type 4f4a2713aSLionel Sambuc 5f4a2713aSLionel Sambuc@interface Foo {} @end 6f4a2713aSLionel Sambuc 7f4a2713aSLionel Sambuc@interface Foo () { 8f4a2713aSLionel Sambuc int *bar; 9f4a2713aSLionel Sambuc} 10f4a2713aSLionel Sambuc@end 11f4a2713aSLionel Sambuc 12f4a2713aSLionel Sambuc@implementation Foo 13f4a2713aSLionel Sambuc@end 14f4a2713aSLionel Sambuc 15f4a2713aSLionel Sambucvoid bar(Foo *fptr) {} 16