aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/goto-1.c
blob: 336ff2e6ce9afe11054db8904dfc7ac833eb2cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void
f (void)
{
  do
    {
      if (0)
	{
        L1:;
	}
      else
	goto L2;
    L2:;
    }
  while (0);

  goto L1;
}