Files
clang-p2996/clang/test/CodeGenObjC/debug-info-property3.m
Duncan P. N. Exon Smith f04be1fb3a DebugInfo: Move new hierarchy into place (clang)
Update testcases for LLVM change in r231082 to use the new debug info
hierarchy.

llvm-svn: 231083
2015-03-03 17:25:55 +00:00

15 lines
285 B
Objective-C

// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | FileCheck %s
@interface I1
// CHECK: !MDObjCProperty(name: "p1"
// CHECK-SAME: line: [[@LINE+2]]
// CHECK-SAME: attributes: 2316
@property int p1;
@end
@implementation I1
@synthesize p1;
@end
void foo(I1 *iptr) {}