summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/property-dbg.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/property-dbg.m')
-rw-r--r--test/CodeGenObjC/property-dbg.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGenObjC/property-dbg.m b/test/CodeGenObjC/property-dbg.m
new file mode 100644
index 0000000..5bbb046
--- /dev/null
+++ b/test/CodeGenObjC/property-dbg.m
@@ -0,0 +1,17 @@
+// RUN: %clang_cc1 -S -g -masm-verbose -x objective-c < %s | grep setI | grep DW_AT_name
+@interface Foo {
+ int i;
+}
+@property int i;
+@end
+
+@implementation Foo
+@synthesize i;
+@end
+
+int bar(Foo *f) {
+ int i = 1;
+ f.i = 2;
+ i = f.i;
+ return i;
+}
OpenPOWER on IntegriCloud