blob: 383390c4ab3122bafbc1d561ccd267c95fc33ab8 [file] [log] [blame]
Timur Iskhodzhanovad477762014-01-30 01:01:36 +00001// FIXME: Check IR rather than asm, then triple is not needed.
2// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -g %s -o - | FileCheck %s
Devang Patele91b54c2011-05-12 21:29:57 +00003// CHECK: AT_APPLE_objc_complete_type
Devang Patel36882c82011-05-12 19:07:41 +00004
5@interface Foo {} @end
6
7@interface Foo () {
8 int *bar;
9}
10@end
11
12@implementation Foo
13@end
14
15void bar(Foo *fptr) {}