forked from OSchip/llvm-project
21 lines
909 B
Common Lisp
21 lines
909 B
Common Lisp
// 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
|
|
}
|