rt_gccstream/gcc/testsuite/gcc.target/ia64/sibcall-opt-2.c

13 lines
290 B
C

/* 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));
}