rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20010824-1.c

8 lines
65 B
C

void f(int n)
{
bugcauser:
if (n != 0)
f(n-1);
return;
}