[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / clang / test / Parser / warn-cuda-compat.cu
blobc3aad6f663605423cdf231277339f425aefcac4d
1 // RUN: %clang_cc1 -Wno-cuda-compat -Werror %s
2 // RUN: %clang_cc1 -Wcuda-compat -verify %s
3 // RUN: %clang_cc1 -x c++ -Wcuda-compat -Werror %s
5 // Note that this puts the expected lines before the directives to work around
6 // limitations in the -verify mode.
8 void test(int *List, int Length) {
9 /* expected-warning {{argument to '#pragma unroll' should not be in parentheses in CUDA C/C++}} */#pragma unroll(4)
10   for (int i = 0; i < Length; ++i) {
11     List[i] = i;
12   }