blob: 6a15922c932c2cc25482ab5006642fe56d0cf478 [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 Patel5a540652011-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) {}