URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [loop-6.c] - Rev 816
Compare with Previous | Blame | View Log
main() { char c; char d; int nbits; c = -1; for (nbits = 1 ; nbits < 100; nbits++) { d = (1 << nbits) - 1; if (d == c) break; } if (nbits == 100) abort(); exit(0); }