Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-class-extension2.m
blobea7865b4ac5b6e1fa3e4d95906631cfad382f0ac
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 %s
3 // CHECK: AT_APPLE_objc_complete_type
5 @interface Foo {} @end
7 @interface Foo () {
8     int *bar;
10 @end
12 @implementation Foo
13 @end
15 void bar(Foo *fptr) {}