]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenOpenCL/cast_image.cl
Vendor import of clang release_40 branch r292951:
[FreeBSD/FreeBSD.git] / test / CodeGenOpenCL / cast_image.cl
1 // RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn--amdhsa %s | FileCheck --check-prefix=AMDGCN %s
2 // RUN: %clang_cc1 -emit-llvm -o - -triple spir-unknown-unknown %s | FileCheck --check-prefix=SPIR %s
3
4 #ifdef __AMDGCN__
5
6 constant int* convert(image2d_t img) {
7   // AMDGCN: bitcast %opencl.image2d_ro_t addrspace(2)* %img to i32 addrspace(2)*
8   return __builtin_astype(img, constant int*);
9 }
10
11 #else
12
13 global int* convert(image2d_t img) {
14   // SPIR: bitcast %opencl.image2d_ro_t addrspace(1)* %img to i32 addrspace(1)*
15   return __builtin_astype(img, global int*);
16 }
17
18 #endif