1*67e74705SXin Li// FIXME: Check IR rather than asm, then triple is not needed. 2*67e74705SXin Li// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %s -o - | FileCheck %s 3*67e74705SXin Li// CHECK: AT_APPLE_objc_complete_type 4*67e74705SXin Li 5*67e74705SXin Li@interface Foo {} @end 6*67e74705SXin Li 7*67e74705SXin Li@interface Foo () { 8*67e74705SXin Li int *bar; 9*67e74705SXin Li} 10*67e74705SXin Li@end 11*67e74705SXin Li 12*67e74705SXin Li@implementation Foo 13*67e74705SXin Li@end 14*67e74705SXin Li 15*67e74705SXin Livoid bar(Foo *fptr) {} 16