URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [loop-2b.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
#include <limits.h> int a[2]; f (int i) { for (; i < INT_MAX; i++) { a[i] = -2; if (&a[i] == &a[1]) break; } } main () { a[0] = a[1] = 0; f (0); if (a[0] != -2 || a[1] != -2) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log