teak-llvm/clang/test/SemaOpenCL/unsupported.cl
Chandler Carruth cbe1eba0c6 Fix the spelling of 'bitfield' in diagnostics to be consistently 'bit-field'.
The latter agrees with most existing diagnostics and the C and C++ standards.

Differential Revision: https://reviews.llvm.org/D26530

llvm-svn: 290159
2016-12-20 02:43:58 +00:00

14 lines
334 B
Common Lisp

// RUN: %clang_cc1 -verify %s
struct {
int a : 1; // expected-error {{bit-fields are not supported in OpenCL}}
};
void no_vla(int n) {
int a[n]; // expected-error {{variable length arrays are not supported in OpenCL}}
}
void no_logxor(int n) {
int logxor = n ^^ n; // expected-error {{^^ is a reserved operator in OpenCL}}
}