[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaCUDA / vla.cu
blob935fa507661286f7c786ef2a1a3f4681b2a5bfe4
1 // RUN: %clang_cc1 -triple nvptx64-nvidia-cuda -fcuda-is-device -verify -Wno-vla %s
2 // RUN: %clang_cc1 -triple x86_64-unknown-linux -verify -DHOST -Wno-vla %s
4 #ifndef __CUDA_ARCH__
5 // expected-no-diagnostics
6 #endif
8 #include "Inputs/cuda.h"
10 void host(int n) {
11   int x[n];
14 __device__ void device(int n) {
15   int x[n];
16 #ifdef __CUDA_ARCH__
17   // expected-error@-2 {{cannot use variable-length arrays in __device__ functions}}
18 #endif
21 __host__ __device__ void hd(int n) {
22   int x[n];
23 #ifdef __CUDA_ARCH__
24   // expected-error@-2 {{cannot use variable-length arrays in __host__ __device__ functions}}
25 #endif
28 // No error because never codegen'ed for device.
29 __host__ __device__ inline void hd_inline(int n) {
30   int x[n];
32 void call_hd_inline() { hd_inline(42); }