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

foo (a, b)
{
  if (a < 0)
    goto ret1;
  if (a == 0)
    return 2;
  return 3;
 ret1:
  return 1;
}