URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [loop-14.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
int a3[3]; void f(int *a) { int i; for (i=3; --i;) a[i] = 42 / i; } int main () { f(a3); if (a3[1] != 42 || a3[2] != 21) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log