summaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL/cast_image.cl
blob: 479404a91371d006b9b475c6d4d1b67fae19dad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn--amdhsa %s | FileCheck --check-prefix=AMDGCN %s
// RUN: %clang_cc1 -emit-llvm -o - -triple spir-unknown-unknown %s | FileCheck --check-prefix=SPIR %s

#ifdef __AMDGCN__

constant int* convert(image2d_t img) {
  // AMDGCN: bitcast %opencl.image2d_ro_t addrspace(2)* %img to i32 addrspace(2)*
  return __builtin_astype(img, constant int*);
}

#else

global int* convert(image2d_t img) {
  // SPIR: bitcast %opencl.image2d_ro_t addrspace(1)* %img to i32 addrspace(1)*
  return __builtin_astype(img, global int*);
}

#endif