Yaxun Liu | 02c3979 | 2016-07-13 21:21:05 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -verify -fsyntax-only |
| 2 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 |
| 3 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 |
| 4 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL2.0 |
| 5 | // RUN: %clang_cc1 %s -verify -fsyntax-only -fblocks -DBLOCKS |
| 6 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -fblocks -DBLOCKS |
| 7 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -fblocks -DBLOCKS |
| 8 | // RUN: %clang_cc1 %s -triple amdgcn--amdhsa -x c -std=c99 -verify -fsyntax-only |
Benjamin Kramer | 69c476c | 2016-07-14 12:56:21 +0000 | [diff] [blame^] | 9 | // RUN: %clang_cc1 -cl-std=CL1.1 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION11 %s |
| 10 | // RUN: %clang_cc1 -cl-std=CL1.2 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION12 %s |
Yaxun Liu | 02c3979 | 2016-07-13 21:21:05 +0000 | [diff] [blame] | 11 | // RUN: %clang_cc1 -cl-std=CL2.0 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION20 %s |
| 12 | |
| 13 | void f(void (^g)(void)) { |
| 14 | #ifdef __OPENCL_C_VERSION__ |
| 15 | #if __OPENCL_C_VERSION__ < CL_VERSION_2_0 && !defined(BLOCKS) |
| 16 | // expected-error@-3{{blocks support disabled - compile with -fblocks or for OpenCL 2.0 or above}} |
| 17 | #else |
| 18 | // expected-no-diagnostics |
| 19 | #endif |
| 20 | #else |
| 21 | // expected-error@-8{{blocks support disabled - compile with -fblocks or pick a deployment target that supports them}} |
| 22 | #endif |
| 23 | } |
| 24 | |
| 25 | // CHECK-INVALID-OPENCL-VERSION11: warning: OpenCL version 1.1 does not support the option '-cl-strict-aliasing' |
| 26 | // CHECK-INVALID-OPENCL-VERSION12: warning: OpenCL version 1.2 does not support the option '-cl-strict-aliasing' |
Benjamin Kramer | 69c476c | 2016-07-14 12:56:21 +0000 | [diff] [blame^] | 27 | // CHECK-INVALID-OPENCL-VERSION20: warning: OpenCL version 2.0 does not support the option '-cl-strict-aliasing' |