blob: 6e2dcda8b54ba7a21fb25a43363a1d7b998681a6 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// FIXME: Check IR rather than asm, then triple is not needed.
2// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -g %s -o - | FileCheck %s
Devang Patelfa936d82011-04-16 00:12:55 +00003
4// CHECK: AT_APPLE_property_name
Devang Patel5f3c7fa2012-02-06 18:20:02 +00005// CHECK: AT_APPLE_property_attribute
6// CHECK: AT_APPLE_property
Devang Patelfa936d82011-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