mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 17:06:07 +00:00

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
27 lines
675 B
Common Lisp
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;
|
|
}
|