blob: 2057d4d1d97460bd6c50a15577ba9edf8b58e993 [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 Patel362ed2a2012-02-06 23:24:13 +00003
4// CHECK: AT_APPLE_property_name
Eric Christopher856183c2012-04-05 22:03:35 +00005// CHECK-NOT: AT_APPLE_property_getter
6// CHECK-NOT: AT_APPLE_property_setter
Devang Patel362ed2a2012-02-06 23:24:13 +00007// CHECK: AT_APPLE_property_attribute
8// CHECK: AT_APPLE_property
9
10
11@interface I1
12@property int p1;
13@end
14
15@implementation I1
16@end
17
18void foo(I1 *ptr) {}