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.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [991202-1.c] - Rev 297
Compare with Previous | Blame | View Log
int x, y; int main() { x = 2; y = x; do { x = y; y = 2 * y; } while ( ! ((y - x) >= 20)); exit (0); }