blob: d4750c120f6020a097fde383ca5fdf1de9ed4926 [file] [log] [blame]
Timur Iskhodzhanovad477762014-01-30 01:01:36 +00001// FIXME: Check IR rather than asm, then triple is not needed.
Douglas Katzman3459ce22015-10-08 04:24:12 +00002// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %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) {}