diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-property.m')
| -rw-r--r-- | test/CodeGenObjC/debug-info-property.m | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGenObjC/debug-info-property.m b/test/CodeGenObjC/debug-info-property.m new file mode 100644 index 000000000000..d86b7c7a5eba --- /dev/null +++ b/test/CodeGenObjC/debug-info-property.m @@ -0,0 +1,12 @@ +// RUN: %clang_cc1 -masm-verbose -S -g %s -o - | FileCheck %s + +// CHECK: AT_APPLE_property_name +@interface I1 { +int p1; +} +@property int p1; +@end + +@implementation I1 +@synthesize p1; +@end |
