URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [980618-1.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
void func(int, int); int main() { int x = 7; func(!x, !7); exit (0); } void func(int x, int y) { if (x == y) return; else abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log