URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [970923-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
int ts(a) int a; { if (a < 1000 && a > 2000) return 1; else return 0; } int tu(a) unsigned int a; { if (a < 1000 && a > 2000) return 1; else return 0; } main() { if (ts (0) || tu (0)) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log