diff options
| author | Yaxun Liu <Yaxun.Liu@amd.com> | 2016-06-14 21:43:01 +0000 |
|---|---|---|
| committer | Yaxun Liu <Yaxun.Liu@amd.com> | 2016-06-14 21:43:01 +0000 |
| commit | 18e3fd3ad671d039e45fb47bfd65b39f5e46d2c0 (patch) | |
| tree | caa9800168a070fc9dbf30462ca7586eb2164aff /clang/test/Frontend | |
| parent | 07543a8c2d036d39383c7d1d6a73c9bfea78d2af (diff) | |
| download | bcm5719-llvm-18e3fd3ad671d039e45fb47bfd65b39f5e46d2c0.tar.gz bcm5719-llvm-18e3fd3ad671d039e45fb47bfd65b39f5e46d2c0.zip | |
[OpenCL] Enable -fblocks by default for OpenCL 2.0 and above.
Reviewed as part of http://reviews.llvm.org/D20444
llvm-svn: 272720
Diffstat (limited to 'clang/test/Frontend')
| -rw-r--r-- | clang/test/Frontend/opencl-blocks.cl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/Frontend/opencl-blocks.cl b/clang/test/Frontend/opencl-blocks.cl new file mode 100644 index 00000000000..b514efa7cfc --- /dev/null +++ b/clang/test/Frontend/opencl-blocks.cl @@ -0,0 +1,20 @@ +// RUN: %clang_cc1 %s -verify -fsyntax-only +// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 +// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 +// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL2.0 +// RUN: %clang_cc1 %s -verify -fsyntax-only -fblocks -DBLOCKS +// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -fblocks -DBLOCKS +// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -fblocks -DBLOCKS +// RUN: %clang_cc1 %s -triple amdgcn--amdhsa -x c -std=c99 -verify -fsyntax-only + +void f(void (^g)(void)) { +#ifdef __OPENCL_C_VERSION__ +#if __OPENCL_C_VERSION__ < CL_VERSION_2_0 && !defined(BLOCKS) + // expected-error@-3{{blocks support disabled - compile with -fblocks or for OpenCL 2.0 or above}} +#else + // expected-no-diagnostics +#endif +#else + // expected-error@-8{{blocks support disabled - compile with -fblocks or pick a deployment target that supports them}} +#endif +} |

