• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -triple %itanium_abi_triple -emit-llvm -fblocks -o - %s | FileCheck %s
2
3// CHECK-LABEL: define {{.*}}void @_Z1fPU8__strongP11objc_object(i8**)
4void f(__strong id *) {}
5// CHECK-LABEL: define {{.*}}void @_Z1fPU6__weakP11objc_object(i8**)
6void f(__weak id *) {}
7// CHECK-LABEL: define {{.*}}void @_Z1fPU15__autoreleasingP11objc_object(i8**)
8void f(__autoreleasing id *) {}
9// CHECK-LABEL: define {{.*}}void @_Z1fPP11objc_object(i8**)
10void f(__unsafe_unretained id *) {}
11// CHECK-LABEL: define {{.*}}void @_Z1fPU8__strongKP11objc_object(i8**)
12void f(const __strong id *) {}
13// CHECK-LABEL: define {{.*}}void @_Z1fPU6__weakKP11objc_object(i8**)
14void f(const __weak id *) {}
15// CHECK-LABEL: define {{.*}}void @_Z1fPU15__autoreleasingKP11objc_object(i8**)
16void f(const __autoreleasing id *) {}
17// CHECK-LABEL: define {{.*}}void @_Z1fPKP11objc_object(i8**)
18void f(const __unsafe_unretained id *) {}
19// CHECK-LABEL: define {{.*}}void @_Z1fPFU19ns_returns_retainedP11objc_objectvE
20void f(__attribute__((ns_returns_retained)) id (*fn)()) {}
21// CHECK-LABEL: define {{.*}}void @_Z1fP11objc_object
22void f(__attribute__((ns_consumed)) id) {}
23// CHECK-LABEL: define {{.*}}void @_Z1fPFP11objc_objectU11ns_consumedS0_S0_E
24void f(id (*fn)(__attribute__((ns_consumed)) id, id)) {}
25// CHECK-LABEL: define {{.*}}void @_Z1fPFP11objc_objectS0_U11ns_consumedS0_E
26void f(__strong id (*fn)(id, __attribute__((ns_consumed)) id)) {}
27// CHECK-LABEL: define {{.*}}void @_Z1fU13block_pointerFvU11ns_consumedP11objc_objectE
28void f(void (^)(__attribute__((ns_consumed)) id)) {}
29
30template<unsigned N> struct unsigned_c { };
31
32// CHECK-LABEL: define weak_odr {{.*}}void @_Z1gIKvEvP10unsigned_cIXplszv1U8__bridgecvPT_v1U8__bridgecvP11objc_objectcvS3_Li0ELi1EEE
33template<typename T>void g(unsigned_c<sizeof((__bridge T*)(__bridge id)(T*)0) + 1>*) {}
34template void g<const void>(unsigned_c<sizeof(id) + 1> *);
35