(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
sibcall-2.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target arm_eabi } */
       3  /* { dg-options "-O2 -mabi=aapcs" } */
       4  
       5  
       6  extern void __attribute__((weak)) wfunc(void);
       7  void main(void)
       8  {
       9    wfunc();  /* Must not tail-call.  */
      10  }
      11  
      12  /* { dg-final { scan-assembler-not "b\[\\t \]+wfunc" } } */