URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030909-1.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
void abort (); void exit (int); void test(int x, int y) { if (x == y) abort (); } void foo(int x, int y) { if (x == y) goto a; else { a:; if (x == y) goto b; else { b:; if (x != y) test (x, y); } } } int main(void) { foo (0, 0); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log