URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [mword.c] - Rev 399
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