(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
headmerge-1.c
       1  /* { dg-do compile }  */
       2  /* { dg-options "-O2 -mno-long-calls" }  */
       3  /* { dg-final { scan-assembler-times "#120" 1 } } */
       4  
       5  extern void foo1 (int);
       6  extern void foo2 (int);
       7  
       8  void t (int x, int y)
       9  {
      10    if (y < 5)
      11      foo1 (120);
      12    else
      13      foo2 (120);
      14  }