URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [pr49866.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR target/49866 */ /* { dg-do assemble } */ /* { dg-options "-O2 -mcmodel=large" { target lp64 } } */ void fn (void *, int, int); int fn2 (void); void baz (int); static void foo (void *x, int y) { int i; for (i = 0; i < y; i++) fn (x, fn2 (), i); } void bar (int u, int v, int w, void *x) { baz (u); foo (x, w); baz (u); }
Go to most recent revision | Compare with Previous | Blame | View Log