diff options
Diffstat (limited to 'clang/test/Parser/opencl-image-access.cl')
-rw-r--r-- | clang/test/Parser/opencl-image-access.cl | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/clang/test/Parser/opencl-image-access.cl b/clang/test/Parser/opencl-image-access.cl index 313587c1d22..3496d12a3e5 100644 --- a/clang/test/Parser/opencl-image-access.cl +++ b/clang/test/Parser/opencl-image-access.cl @@ -1,16 +1,14 @@ -// 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) { } +// RUN: %clang_cc1 %s -fsyntax-only
+
+__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) { }
|