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-3.c] - Rev 154
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