URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [mword.c] - Rev 747
Go to most recent revision | Compare with Previous | Blame | View Log
int foo (a, b) int *a, *b; { int x, y; x++; *a = *b; y = *b; if ((int) x) return 1; else return y; } foo1 (p) int *p; { p[0] = p[1]; return p[0]; } foo2 (p, x) int *p; { p[0] = x; return p[0]; }
Go to most recent revision | Compare with Previous | Blame | View Log