URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000205-1.c] - Rev 154
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); }