1 // FIXME: Check IR rather than asm, then triple is not needed. 2 // RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %s -o - | FileCheck %s 3 4 // CHECK: AT_APPLE_property_name 5 // CHECK-NOT: AT_APPLE_property_getter 6 // CHECK-NOT: AT_APPLE_property_setter 7 // 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 18 void foo(I1 *ptr) {} 19