(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sibcall-3.c
       1  /* { dg-do compile { target ia32 } } */
       2  /* { dg-options "-O2" } */
       3  
       4  extern 
       5  #ifdef _WIN32
       6   __declspec (dllimport)
       7  #endif
       8   void foo (int a);
       9  
      10  void bar (int a)
      11  {
      12    return foo (a);
      13  }
      14  
      15  /* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */