URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [980526-3.c] - Rev 154
Compare with Previous | Blame | View Log
int compare(x, y) unsigned int x; unsigned int y; { if (x==y) return 0; else return 1; } main() { unsigned int i, j, k, l; i = 5; j = 2; k=0; l=2; if (compare(5%(~(unsigned) 2), i%~j) || compare(0, k%~l)) abort(); else exit(0); }