blob: 479404a91371d006b9b475c6d4d1b67fae19dad3 [file] [log] [blame]
Yaxun Liuc8acb4f2016-08-04 19:35:17 +00001// 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
6constant 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
13global 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