16 lines · plain
1// FIXME: Check IR rather than asm, then triple is not needed.2// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s3// CHECK: AT_APPLE_objc_complete_type4 5@interface Foo {} @end6 7@interface Foo () {8 int *bar;9}10@end11 12@implementation Foo13@end14 15void bar(Foo *fptr) {}16