* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / for-12.c
blob98318d7d5aec216412e4f1c8f145ac9c6d7d8c99
1 int foo (void)
3 int i, a;
5 a = 30;
7 #pragma omp parallel for lastprivate (a)
8 for (i = 0; i < 10; i++)
9 a = a + i;
11 return a;