[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-property4.m
blob1f489f2f6b63714cbea214773d158b48ed8828f7
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-NOT: AT_APPLE_property_getter
6 // CHECK-NOT: AT_APPLE_property_setter
7 // CHECK: AT_APPLE_property_attribute
8 // CHECK: AT_APPLE_property
11 @interface I1
12 @property int p1;
13 @end
15 @implementation I1
16 @end
18 void foo(I1 *ptr) {}