xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-property4.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc// FIXME: Check IR rather than asm, then triple is not needed.
2*0a6a1f1dSLionel Sambuc// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -g %s -o - | FileCheck %s
3f4a2713aSLionel Sambuc
4f4a2713aSLionel Sambuc// CHECK: AT_APPLE_property_name
5f4a2713aSLionel Sambuc// CHECK-NOT: AT_APPLE_property_getter
6f4a2713aSLionel Sambuc// CHECK-NOT: AT_APPLE_property_setter
7f4a2713aSLionel Sambuc// CHECK: AT_APPLE_property_attribute
8f4a2713aSLionel Sambuc// CHECK: AT_APPLE_property
9f4a2713aSLionel Sambuc
10f4a2713aSLionel Sambuc
11f4a2713aSLionel Sambuc@interface I1
12f4a2713aSLionel Sambuc@property int p1;
13f4a2713aSLionel Sambuc@end
14f4a2713aSLionel Sambuc
15f4a2713aSLionel Sambuc@implementation I1
16f4a2713aSLionel Sambuc@end
17f4a2713aSLionel Sambuc
18f4a2713aSLionel Sambucvoid foo(I1 *ptr) {}
19