1  /* PR target/38056.  Do not do sibcall optimization across object file
       2     boundery when -mconstant-gp is not used.  */
       3  /* { dg-do compile } */
       4  /* { dg-options "-O2" } */
       5  /* { dg-final { scan-assembler "br.call.*bar" } } */
       6  
       7  int bar(int x);
       8  
       9  int foo(int x)
      10  {
      11    return (bar(x + 1));
      12  }