URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [loop-3.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
#include <limits.h> int n = 0; g (i) { n++; } f (m) { int i; i = m; do { g (i * INT_MAX / 2); } while (--i > 0); } main () { f (4); if (n != 4) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log