(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sibcall-1.c
       1  /* { dg-do compile { target { { ! x32 }  && nonpic } } } */
       2  /* { dg-options "-O2" } */
       3  
       4  extern int (*foo)(int);
       5  
       6  int boo (int a)
       7  {
       8    return (*foo) (a);
       9  }
      10  
      11  /* { dg-final { scan-assembler-not "mov" } } */