Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / vla-5.c
blob20be204a5e15205f82f737d669f6b8278feb971f
1 // { dg-do compile }
2 /* { dg-require-effective-target alloca } */
4 void foo(int n, int i)
6 int A[n];
8 #pragma omp parallel sections lastprivate(A)
10 A[i] = 1;