Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-property3.m
blob20880600a781c7c4a01f7659f0b8950676b7c63d
1 // RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
3 @interface I1
4 // CHECK: !DIObjCProperty(name: "p1"
5 // CHECK-SAME:            line: [[@LINE+2]]
6 // CHECK-SAME:            attributes: 2316
7 @property int p1;
8 @end
10 @implementation I1
11 @synthesize p1;
12 @end
14 void foo(I1 *iptr) {}