C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr29965-10.C
blob2e816da7be214226229787cbd5021906972b9401
1 // PR middle-end/29965
2 // Test that OpenMP construct bodies which never return don't cause ICEs.
3 // This is invalid code, but we don't emit diagnostics for it, nevertheless
4 // we test that we don't ICE on it.
5 // { dg-do compile }
6 // { dg-options "-O2 -fopenmp" }
8 void
9 foo1 ()
11   int i;
12 #pragma omp for schedule (static)
13   for (i = 0; i < 2834; i++)
14     throw 0;
17 void
18 foo2 ()
20   int i;
21 #pragma omp parallel for schedule (static)
22   for (i = 0; i < 2834; i++)
23     throw 0;