(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
tail-long-call.c
       1  /* { dg-skip-if "need at least armv5te" { *-*-* } { "-march=armv[234]*" "-mthumb" } { "" } } */
       2  /* { dg-skip-if "FDPIC does not support tailcall optimization" { arm*-*-uclinuxfdpiceabi } "*" "" } */
       3  /* { dg-options "-O2 -march=armv5te -marm" } */
       4  /* { dg-final { scan-assembler "bx" } } */
       5  /* { dg-final { scan-assembler-not "blx" } } */
       6  
       7  int lcal (int) __attribute__ ((long_call));
       8  
       9  int
      10  dec (int a)
      11  {
      12    return lcal (a);
      13  }