aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/gomp/pr29965-1.C
blob: efb89ffa60963f4401ef8a0e8842a6ff9433b275 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
// PR middle-end/29965
// Test that OpenMP construct bodies which never return don't cause ICEs.
// { dg-do compile }
// { dg-options "-O2 -fopenmp" }

extern void baz () __attribute__ ((noreturn));

static inline void
foo ()
{
#pragma omp parallel
  for (;;)
    ;
}

static inline void
bar ()
{
#pragma omp parallel
  baz ();
}

void
foo1 ()
{
  foo ();
}

void
foo2 ()
{
  foo ();
}

void
bar1 ()
{
  bar ();
}

void
bar2 ()
{
  bar ();
}