URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [contrib/] [reghunt/] [examples/] [28970.c] - Rev 769
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); int tar (int i) { if (i != 36863) abort (); return -1; } void bug(int q, int bcount) { int j = 0; int outgo = 0; while(j != -1) { outgo++; if (outgo > q-1) outgo = q-1; j = tar (outgo*bcount); } } int main(void) { bug(5, 36863); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log