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

  goto L1;
}