* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / vla-5.c
blob6c6d5517af845a876ae4a6d155b0a360c0ed3af1
1 // { dg-do compile }
3 void foo(int n, int i)
5 int A[n];
7 #pragma omp parallel sections lastprivate(A)
9 A[i] = 1;