blob: 41140dc20425c4be840febc1eb72b9d933ddedc9 [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 Patel8c6f9c42011-09-19 18:54:16 +00003
4// CHECK: AT_APPLE_property_name
5@interface C {
6 int _base;
7}
8@property int base;
9@end
10
11@implementation C
12@synthesize base = _base;
13@end
14
15void foo(C *cptr) {}