blob: be7d6ae9dc2540ac90837e152c9f9db04d023619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// PR middle-end/29965
// Test that OpenMP construct bodies which never return don't cause ICEs.
// This is invalid code, but we don't emit diagnostics for it, nevertheless
// we test that we don't ICE on it.
// { dg-do compile }
// { dg-options "-O2 -fopenmp" }
void
foo ()
{
#pragma omp parallel
throw 0;
}
static inline void
bar ()
{
#pragma omp parallel
throw 0;
}
void
bar1 ()
{
bar ();
}
void
bar2 ()
{
bar ();
}
|