1 // FIXME: Check IR rather than asm, then triple is not needed.
2 // RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s
4 // CHECK: AT_APPLE_property_name
5 // CHECK: AT_APPLE_property_getter
6 // CHECK: AT_APPLE_property_setter
7 // CHECK: AT_APPLE_property_attribute
8 // CHECK: AT_APPLE_property
15 - (void) mySetBaseInt: (int) in_int;
16 @property(getter=myGetBaseInt,setter=mySetBaseInt:) int baseInt;
19 @implementation BaseClass2
26 - (void) mySetBaseInt: (int) in_int
28 _baseInt = 2 * in_int;
33 void foo(BaseClass2 *ptr) {}