URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [arith-1.c] - Rev 688
Compare with Previous | Blame | View Log
unsigned sat_add (unsigned i) { unsigned ret = i + 1; if (ret < i) ret = i; return ret; } main () { if (sat_add (~0U) != ~0U) abort (); exit (0); }