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