2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000412-2.c
blobde3ebf9e8638683d0f13e3eef6b7d127c177ce5a
1 int f(int a,int *y)
3 int x = a;
5 if (a==0)
6 return *y;
8 return f(a-1,&x);
11 int main(int argc,char **argv)
13 if (f (100, (int *) 0) != 1)
14 abort ();
15 exit (0);