[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-property.m
blobca013b24be421c0703b732b44399e6ca5939b153
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_attribute
6 // CHECK: AT_APPLE_property
7 @interface I1 {
8 int p1;
10 @property int p1;
11 @end
13 @implementation I1
14 @synthesize p1;
15 @end