aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/delay.c
blob: 4a152c5b3d62b55f24084212187b55fb1965ac7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

foo (a, b)
{
  if (a == 1)
    goto foo1;
  if (a == 2)
    goto foo2;
 foo1:
  return 2;
 foo2:
  return 3;
}