URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [memtst.c] - Rev 714
Go to most recent revision | Compare with Previous | Blame | View Log
#ifdef STACK_SIZE #define SIZE STACK_SIZE / 8 #else #define SIZE 65536 #endif memtst (int *p, int a) { do { if (p[a] == 1) break; } while (--a); } main () { int a[SIZE]; int i; bzero (a, SIZE * 4); for (i = 0; i < 100; i++) { memtst (a, SIZE); } }
Go to most recent revision | Compare with Previous | Blame | View Log