Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-impl.m
bloba648ea17f64fc3ae533e9eea54721c4b57a75587
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -debug-info-kind=limited -S -emit-llvm %s -o - | FileCheck %s
2 @interface NSObject {
3   struct objc_object *isa;
5 @end
7 @interface Shape : NSObject
9 @end
10 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Circle"
11 // CHECK-SAME:             line: [[@LINE+1]],
12 @interface Circle : Shape
14 @end
15 @implementation Circle
17 @end