URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [931110-2.c] - Rev 688
Compare with Previous | Blame | View Log
main () { static int a[] = {3, 4}; register int *b; int c; b = a; c = *b++ % 8; if (c != 3) abort (); exit (0); }