aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/c1.c
blob: f50d437f60b9966bd21323cbf791b177e325f9d4 (plain)
1
2
3
4
5
6
7
unsigned
rec (a, b)
     unsigned a;
     unsigned b;
{
  return a * rec (a - 1, b + 1);
}