blob: 9b471be23dbdcd0b5e1bbef93c5686e695e06a25 [file] [log] [blame]
Timur Iskhodzhanovad477762014-01-30 01:01:36 +00001// FIXME: Check IR rather than asm, then triple is not needed.
Douglas Katzman3459ce22015-10-08 04:24:12 +00002// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %s -o - | FileCheck %s
Devang Patel9d6c8572011-04-16 00:12:55 +00003
4// CHECK: AT_APPLE_property_name
Devang Patel60fc2422012-02-06 18:20:02 +00005// CHECK: AT_APPLE_property_attribute
6// CHECK: AT_APPLE_property
Devang Patel9d6c8572011-04-16 00:12:55 +00007@interface I1 {
8int p1;
9}
10@property int p1;
11@end
12
13@implementation I1
14@synthesize p1;
15@end