xref: /aosp_15_r20/external/clang/test/CodeGenObjC/debug-info-property.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li// FIXME: Check IR rather than asm, then triple is not needed.
2*67e74705SXin Li// RUN: %clang_cc1 -triple %itanium_abi_triple -masm-verbose -S -debug-info-kind=limited %s -o - | FileCheck %s
3*67e74705SXin Li
4*67e74705SXin Li// CHECK: AT_APPLE_property_name
5*67e74705SXin Li// CHECK: AT_APPLE_property_attribute
6*67e74705SXin Li// CHECK: AT_APPLE_property
7*67e74705SXin Li@interface I1 {
8*67e74705SXin Liint p1;
9*67e74705SXin Li}
10*67e74705SXin Li@property int p1;
11*67e74705SXin Li@end
12*67e74705SXin Li
13*67e74705SXin Li@implementation I1
14*67e74705SXin Li@synthesize p1;
15*67e74705SXin Li@end
16