summaryrefslogtreecommitdiff
path: root/clang/test/Parser/opencl-image-access.cl
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/opencl-image-access.cl')
-rw-r--r--clang/test/Parser/opencl-image-access.cl16
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/Parser/opencl-image-access.cl b/clang/test/Parser/opencl-image-access.cl
new file mode 100644
index 0000000..313587c
--- /dev/null
+++ b/clang/test/Parser/opencl-image-access.cl
@@ -0,0 +1,16 @@
+// RUN: %clang_cc1 %s -fsyntax-only
+
+typedef void* image2d_t;
+
+__kernel void f__ro(__read_only image2d_t a) { }
+
+__kernel void f__wo(__write_only image2d_t a) { }
+
+__kernel void f__rw(__read_write image2d_t a) { }
+
+
+__kernel void fro(read_only image2d_t a) { }
+
+__kernel void fwo(write_only image2d_t a) { }
+
+__kernel void frw(read_write image2d_t a) { }