Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / pr38676.c
blobcd9312028d3d5c356246d09d1b144183b2935515
1 /* PR middle-end/38676 */
2 /* { dg-do compile } */
3 /* { dg-options "-fopenmp" } */
5 int
6 main ()
8 int bar, foo = 1;
9 #pragma omp parallel for shared(foo)
10 for (bar = 0; bar < 3; bar++)
12 switch (foo)
14 case 1:
15 break;
18 return 0;