Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / gomp / appendix-a / a.37.1.c
blob3581ee27d7dabdb9227812b2aaecb56eaee86e5b
1 /* { dg-do compile } */
3 extern int omp_get_num_threads (void);
4 void work (int i);
5 void
6 incorrect ()
8 int np, i;
9 np = omp_get_num_threads (); /* misplaced */
10 #pragma omp parallel for schedule(static)
11 for (i = 0; i < np; i++)
12 work (i);