URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [ia64/] [sibcall-opt-2.c] - Rev 826
Compare with Previous | Blame | View Log
/* PR target/38056. Do sibcall optimization across object file boundery when -mconstant-gp is used. */ /* { dg-do compile } */ /* { dg-options "-O2 -mconstant-gp" } */ /* { dg-final { scan-assembler-not "br.call.*bar" } } */ int bar(int x); int foo(int x) { return (bar(x + 1)); }