URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030120-2.c] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 8848 */ extern void abort (); int foo(int status) { int s = 0; if (status == 1) s=1; if (status == 3) s=3; if (status == 4) s=4; return s; } int main() { if (foo (3) != 3) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log