(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr82699-6.c
       1  /* { dg-do compile { target *-*-linux* } } */
       2  /* { dg-require-effective-target mfentry } */
       3  /* { dg-options "-fno-pic -O2 -fcf-protection -pg -mfentry -mrecord-mcount -mnop-mcount -fasynchronous-unwind-tables" } */
       4  /* { dg-final { scan-assembler-times {\t\.cfi_startproc\n\tendbr} 1 } } */
       5  
       6  extern int bar (int);
       7  
       8  int
       9  foo (int i)
      10  {
      11    return bar (i);
      12  }