llvm-project/clang/test/SemaOpenCL/invalid-kernel.cl
Xiang Li 7e04c0ad63 [HLSL] Add groupshare address space.
Added keyword, LangAS and TypeAttrbute for groupshared.

Tanslate it to LangAS with asHLSLLangAS.

Make sure it translated into address space 3 for DirectX target.

Reviewed By: aaron.ballman

Differential Revision: https://reviews.llvm.org/D135060
2022-10-20 09:29:09 -07:00

27 lines
675 B
Common Lisp

// RUN: %clang_cc1 -verify %s
// RUN: %clang_cc1 -cl-std=CL2.0 -verify %s
kernel int bar() { // expected-error {{kernel must have void return type}}
return 6;
}
kernel void main() { // expected-error {{kernel cannot be called 'main'}}
}
int main() { // expected-error {{function cannot be called 'main'}}
return 0;
}
int* global x(int* x) { // expected-error {{return type cannot be qualified with address space}}
return x + 1;
}
int* local x(int* x) { // expected-error {{return type cannot be qualified with address space}}
return x + 1;
}
int* constant x(int* x) { // expected-error {{return type cannot be qualified with address space}}
return x + 1;
}