brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · b6a177a Raw
32 lines · plain
1// RUN: %clang_cc1 %s -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s2 3template <typename T>4struct S{5  T a;6  T foo();7};8 9template<typename T>10T S<T>::foo() { return a;}11 12// CHECK: %struct.S = type { i32 }13// CHECK: %struct.S.0 = type { ptr addrspace(4) }14// CHECK: %struct.S.1 = type { ptr addrspace(1) }15 16// CHECK:  [[A1:%[.a-z0-9]+]] = addrspacecast ptr %{{[a-z0-9]+}} to ptr addrspace(4)17// CHECK:  %call = call spir_func noundef i32 @_ZNU3AS41SIiE3fooEv(ptr addrspace(4) {{[^,]*}} [[A1]]) #118// CHECK:  [[A2:%[.a-z0-9]+]] = addrspacecast ptr %{{[a-z0-9]+}} to ptr addrspace(4)19// CHECK:  %call1 = call spir_func noundef ptr addrspace(4) @_ZNU3AS41SIPU3AS4iE3fooEv(ptr addrspace(4) {{[^,]*}} [[A2]]) #120// CHECK:  [[A3:%[.a-z0-9]+]] = addrspacecast ptr %{{[a-z0-9]+}} to ptr addrspace(4)21// CHECK:  %call2 = call spir_func noundef ptr addrspace(1) @_ZNU3AS41SIPU3AS1iE3fooEv(ptr addrspace(4) {{[^,]*}} [[A3]]) #122 23void bar(){24  S<int> sint;25  S<int*> sintptr;26  S<__global int*> sintptrgl;27 28  sint.foo();29  sintptr.foo();30  sintptrgl.foo();31}32