Anastasia Stulova | c645f61 | 2018-04-12 14:17:04 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -verify -fsyntax-only -DSYNTAX |
| 2 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -DSYNTAX |
| 3 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -DSYNTAX |
| 4 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL2.0 -DSYNTAX |
| 5 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=c++ -DSYNTAX |
| 6 | // RUN: %clang_cc1 %s -verify -fsyntax-only -fblocks -DBLOCKS -DSYNTAX |
| 7 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -fblocks -DBLOCKS -DSYNTAX |
| 8 | // RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -fblocks -DBLOCKS -DSYNTAX |
| 9 | // RUN: %clang_cc1 %s -triple amdgcn--amdhsa -x c -std=c99 -verify -fsyntax-only -DSYNTAX |
Benjamin Kramer | 69c476c | 2016-07-14 12:56:21 +0000 | [diff] [blame] | 10 | // RUN: %clang_cc1 -cl-std=CL1.1 -cl-strict-aliasing -fblocks %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION11 %s |
| 11 | // 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] | 12 | // RUN: %clang_cc1 -cl-std=CL2.0 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION20 %s |
| 13 | |
Anastasia Stulova | c645f61 | 2018-04-12 14:17:04 +0000 | [diff] [blame] | 14 | #ifdef SYNTAX |
| 15 | class test{ |
| 16 | int member; |
| 17 | }; |
| 18 | #ifndef __OPENCL_CPP_VERSION__ |
| 19 | //expected-error@-4{{unknown type name 'class'}} |
| 20 | //expected-error@-5{{expected ';' after top level declarator}} |
| 21 | #endif |
| 22 | #endif |
| 23 | |
Yaxun Liu | 02c3979 | 2016-07-13 21:21:05 +0000 | [diff] [blame] | 24 | void f(void (^g)(void)) { |
Anastasia Stulova | c645f61 | 2018-04-12 14:17:04 +0000 | [diff] [blame] | 25 | #if defined(__OPENCL_C_VERSION__) || defined(__OPENCL_CPP_VERSION__) |
| 26 | #if !defined(BLOCKS) && (defined(__OPENCL_CPP_VERSION__) || __OPENCL_C_VERSION__ != CL_VERSION_2_0) |
| 27 | // expected-error@-3{{blocks support disabled - compile with -fblocks or for OpenCL 2.0}} |
Yaxun Liu | 02c3979 | 2016-07-13 21:21:05 +0000 | [diff] [blame] | 28 | #endif |
| 29 | #else |
Anastasia Stulova | c645f61 | 2018-04-12 14:17:04 +0000 | [diff] [blame] | 30 | // expected-error@-6{{blocks support disabled - compile with -fblocks or pick a deployment target that supports them}} |
Yaxun Liu | 02c3979 | 2016-07-13 21:21:05 +0000 | [diff] [blame] | 31 | #endif |
| 32 | } |
| 33 | |
| 34 | // CHECK-INVALID-OPENCL-VERSION11: warning: OpenCL version 1.1 does not support the option '-cl-strict-aliasing' |
| 35 | // 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] | 36 | // CHECK-INVALID-OPENCL-VERSION20: warning: OpenCL version 2.0 does not support the option '-cl-strict-aliasing' |