aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/delay.c
blob: c776383520a361645c91fde36844715ea51cc638 (plain)
1
2
3
4
5
6
7
8
9
10
11
foo (a, b)
{
  if (a == 1)
    goto foo1;
  if (a == 2)
    goto foo2;
 foo1:
  return 2;
 foo2:
  return 3;
}