blob: c72b04c35d09de6f35d1532dc51af7eab4ba5284 (
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
|
// { dg-do compile }
extern int test(int);
void foo()
{
int i;
for (i = 0; i < 10; ++i)
{
#pragma omp sections
{
continue; // { dg-error "invalid branch" }
}
}
#pragma omp sections
{
#pragma omp section
{ bad1: ; }
#pragma omp section
goto bad1; // { dg-error "invalid branch" }
}
#pragma omp sections
{
goto bad2; // { dg-error "invalid branch" }
}
bad2:;
goto bad3; // { dg-error "invalid entry" }
#pragma omp sections
{
bad3: ;
}
#pragma omp sections
{
goto ok1;
ok1:;
#pragma omp section
for (i = 0; i < 10; ++i)
if (test(i))
break;
else
continue;
#pragma omp section
switch (i)
{
case 0:
break;
default:
test(i);
}
}
}
|