aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/scc.c
blob: 79ae4e12f45de8390baa3f736045b12e3118d312 (plain)
1
2
3
4
5
6
7
8
9
10
11
foo (a, b)
{
  if (a < 0)
    goto ret1;
  if (a == 0)
    return 2;
  return 3;
 ret1:
  return 1;
}