summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gomp/pr29965-8.C
blob: b2a35287d8a69edd9bfb712a8d8c3ef375ddcffd (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// 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
foo1 ()
{
#pragma omp sections
  {
    throw 0;
  }
}

void
bar1 ()
{
#pragma omp sections
  {
#pragma omp section
    throw 0;
#pragma omp section
    throw 0;
  }
}

void
foo2 ()
{
#pragma omp sections
  {
    ;
#pragma omp section
    throw 0;
  }
}

void
bar2 ()
{
#pragma omp sections
  {
#pragma omp section
    throw 0;
#pragma omp section
    ;
  }
}

void
foo3 ()
{
#pragma omp parallel sections
  {
    throw 0;
  }
}

void
bar3 ()
{
#pragma omp parallel sections
  {
#pragma omp section
    throw 0;
#pragma omp section
    throw 0;
  }
}

void
foo4 ()
{
#pragma omp parallel sections
  {
    ;
#pragma omp section
    throw 0;
  }
}

void
bar4 ()
{
#pragma omp parallel sections
  {
#pragma omp section
    throw 0;
#pragma omp section
    ;
  }
}