1 | // RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -triple %itanium_abi_triple -emit-llvm -fblocks -o - %s | FileCheck %s |
2 | // RUN: %clang_cc1 -DTEST_UNALIGNED -fms-extensions -fobjc-arc -fobjc-runtime-has-weak -triple %itanium_abi_triple -emit-llvm -fblocks -o - %s | FileCheck %s --check-prefix=UNALIGNED |
3 | |
4 | // CHECK-LABEL: define {{.*}}void @_Z1fPU8__strongP11objc_object(i8**) |
5 | void f(__strong id *) {} |
6 | // CHECK-LABEL: define {{.*}}void @_Z1fPU6__weakP11objc_object(i8**) |
7 | void f(__weak id *) {} |
8 | // CHECK-LABEL: define {{.*}}void @_Z1fPU15__autoreleasingP11objc_object(i8**) |
9 | void f(__autoreleasing id *) {} |
10 | // CHECK-LABEL: define {{.*}}void @_Z1fPP11objc_object(i8**) |
11 | void f(__unsafe_unretained id *) {} |
12 | // CHECK-LABEL: define {{.*}}void @_Z1fPU8__strongKP11objc_object(i8**) |
13 | void f(const __strong id *) {} |
14 | // CHECK-LABEL: define {{.*}}void @_Z1fPU6__weakKP11objc_object(i8**) |
15 | void f(const __weak id *) {} |
16 | // CHECK-LABEL: define {{.*}}void @_Z1fPU15__autoreleasingKP11objc_object(i8**) |
17 | void f(const __autoreleasing id *) {} |
18 | // CHECK-LABEL: define {{.*}}void @_Z1fPKP11objc_object(i8**) |
19 | void f(const __unsafe_unretained id *) {} |
20 | // CHECK-LABEL: define {{.*}}void @_Z1fPFU19ns_returns_retainedP11objc_objectvE |
21 | void f(__attribute__((ns_returns_retained)) id (*fn)()) {} |
22 | // CHECK-LABEL: define {{.*}}void @_Z1fP11objc_object |
23 | void f(__attribute__((ns_consumed)) id) {} |
24 | // CHECK-LABEL: define {{.*}}void @_Z1fPFP11objc_objectU11ns_consumedS0_S0_E |
25 | void f(id (*fn)(__attribute__((ns_consumed)) id, id)) {} |
26 | // CHECK-LABEL: define {{.*}}void @_Z1fPFP11objc_objectS0_U11ns_consumedS0_E |
27 | void f(__strong id (*fn)(id, __attribute__((ns_consumed)) id)) {} |
28 | // CHECK-LABEL: define {{.*}}void @_Z1fU13block_pointerFvU11ns_consumedP11objc_objectE |
29 | void f(void (^)(__attribute__((ns_consumed)) id)) {} |
30 | |
31 | template<unsigned N> struct unsigned_c { }; |
32 | |
33 | // CHECK-LABEL: define weak_odr {{.*}}void @_Z1gIKvEvP10unsigned_cIXplszv1U8__bridgecvPT_v1U8__bridgecvP11objc_objectcvS3_Li0ELi1EEE |
34 | template<typename T>void g(unsigned_c<sizeof((__bridge T*)(__bridge id)(T*)0) + 1>*) {} |
35 | template void g<const void>(unsigned_c<sizeof(id) + 1> *); |
36 | |
37 | #if TEST_UNALIGNED |
38 | // UNALIGNED-LABEL: define {{.*}}void @_Z1gPU6__weakU11__unalignedP11objc_object(i8**) |
39 | void g(__weak __unaligned id *) {} |
40 | // UNALIGNED-LABEL: define {{.*}}void @_Z1gPU11__unalignedU8__strongP11objc_object(i8**) |
41 | void g(__strong __unaligned id *) {} |
42 | // UNALIGNED-LABEL: define {{.*}}void @_Z1gPU11__unalignedU15__autoreleasingP11objc_object(i8**) |
43 | void g(__autoreleasing __unaligned id *) {} |
44 | #endif // TEST_UNALIGNED |
45 | |