URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000412-2.c] - Rev 688
Compare with Previous | Blame | View Log
int f(int a,int *y) { int x = a; if (a==0) return *y; return f(a-1,&x); } int main(int argc,char **argv) { if (f (100, (int *) 0) != 1) abort (); exit (0); }