From e7ce54074f618cc4b38fae2a05c7a28c7bf94c46 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Thu, 19 May 2011 23:37:41 +0000 Subject: Fix location of setter/getter synthesized for a property. llvm-svn: 131701 --- clang/test/CodeGenObjC/debug-property-synth.m | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 clang/test/CodeGenObjC/debug-property-synth.m (limited to 'clang/test/CodeGenObjC/debug-property-synth.m') diff --git a/clang/test/CodeGenObjC/debug-property-synth.m b/clang/test/CodeGenObjC/debug-property-synth.m new file mode 100644 index 00000000000..05852b7e292 --- /dev/null +++ b/clang/test/CodeGenObjC/debug-property-synth.m @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s +// Radar 9468526 +@interface I { + int _p1; +} +@property int p1; +@end + +@implementation I +@synthesize p1 = _p1; +@end + +int main() { + I *myi; + myi.p1 = 2; + return 0; +} + +// CHECK: .loc 2 10 0 -- cgit v1.2.3