aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20030503-1.c
blob: 3c2b28d8386f12c1427435a7c56cc3b3c9522cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void foo ()
{
  if (1)
    goto foo;
  else
    for (;;)
      {
      foo:
	bar ();
	return;
      }
}