summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/label12.C
blob: 2585318b253850f2658cf955cb39a5ebd15ff21f (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
// PR c++/39028
// { dg-do compile }
// Origin: Stephan Springl <springl@bfw-online.de>

void
f ()
{
  int i;
  for (i = 0; i < 2; i++)
    {
      __label__ l;
      goto l;
      l:;
    }
  while (i++ < 5)
    {
      __label__ l;
      goto l;
      l:;
    }
  do
    {
      __label__ l;
      goto l;
      l:;
    }
  while (i++ < 8);
  if (1)
    {
      __label__ l;
      goto l;
      l:;
    }
  {
    __label__ l;
    goto l;
    l:;
  }
}