[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenOpenCLCXX / template-address-spaces.clcpp
blob052fce45c3ae4f4ddeeaf13dc54f8d5c2cccd255
1 // RUN: %clang_cc1 -no-opaque-pointers %s -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s
3 template <typename T>
4 struct S{
5   T a;
6   T foo();
7 };
9 template<typename T>
10 T S<T>::foo() { return a;}
12 // CHECK: %struct.S = type { i32 }
13 // CHECK: %struct.S.0 = type { i32 addrspace(4)* }
14 // CHECK: %struct.S.1 = type { i32 addrspace(1)* }
16 // CHECK:  [[A1:%[.a-z0-9]+]] = addrspacecast %struct.S* %{{[a-z0-9]+}} to %struct.S addrspace(4)*
17 // CHECK:  %call = call spir_func noundef i32 @_ZNU3AS41SIiE3fooEv(%struct.S addrspace(4)* {{[^,]*}} [[A1]]) #1
18 // CHECK:  [[A2:%[.a-z0-9]+]] = addrspacecast %struct.S.0* %{{[a-z0-9]+}} to %struct.S.0 addrspace(4)*
19 // CHECK:  %call1 = call spir_func noundef i32 addrspace(4)* @_ZNU3AS41SIPU3AS4iE3fooEv(%struct.S.0 addrspace(4)* {{[^,]*}} [[A2]]) #1
20 // CHECK:  [[A3:%[.a-z0-9]+]] = addrspacecast %struct.S.1* %{{[a-z0-9]+}} to %struct.S.1 addrspace(4)*
21 // CHECK:  %call2 = call spir_func noundef i32 addrspace(1)* @_ZNU3AS41SIPU3AS1iE3fooEv(%struct.S.1 addrspace(4)* {{[^,]*}} [[A3]]) #1
23 void bar(){
24   S<int> sint;
25   S<int*> sintptr;
26   S<__global int*> sintptrgl;
28   sint.foo();
29   sintptr.foo();
30   sintptrgl.foo();