blob: d802b792deae834fc1f00d0f9f24aea822a6625f [file] [log] [blame]
/* 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));
}