aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL/opencl_types.cl
blob: b1e558db9b9c00c73b5a35cabe2b32d25600bfde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// RUN: %clang_cc1 %s -emit-llvm -o - -O0 | FileCheck %s

constant sampler_t glb_smp = 7;
// CHECK: global i32 7

void fnc1(image1d_t img) {}
// CHECK: @fnc1(%opencl.image1d_t*

void fnc1arr(image1d_array_t img) {}
// CHECK: @fnc1arr(%opencl.image1d_array_t*

void fnc1buff(image1d_buffer_t img) {}
// CHECK: @fnc1buff(%opencl.image1d_buffer_t*

void fnc2(image2d_t img) {}
// CHECK: @fnc2(%opencl.image2d_t*

void fnc2arr(image2d_array_t img) {}
// CHECK: @fnc2arr(%opencl.image2d_array_t*

void fnc3(image3d_t img) {}
// CHECK: @fnc3(%opencl.image3d_t*

void fnc4smp(sampler_t s) {}
// CHECK: define void @fnc4smp(i32

kernel void foo(image1d_t img) {
	sampler_t smp = 5;
// CHECK: alloca i32
	event_t evt;
// CHECK: alloca %opencl.event_t*
// CHECK: store i32 5,
  fnc4smp(smp);
// CHECK: call void @fnc4smp(i32
  fnc4smp(glb_smp);
// CHECK: call void @fnc4smp(i32
}