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-3b.c] - Rev 841
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 * 4); i -= INT_MAX / 8; } while (i > 0); } main () { f (INT_MAX/8*4); if (n != 4) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log