URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000205-1.c] - Rev 688
Compare with Previous | Blame | View Log
static int f (int a) { if (a == 0) return 0; do if (a & 128) return 1; while (f (0)); return 0; } int main(void) { if (f (~128)) abort (); exit (0); }