xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-class-extension.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1// 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
3
4// CHECK: AT_APPLE_objc_complete_type
5
6@interface I1
7@end
8
9@implementation I1 {
10int myi2;
11}
12int myi;
13@end
14
15void foo(I1 *iptr) {}
16
17