(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
debug/
dwarf2/
pr66482.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O3 -gdwarf" } */
       3  
       4  void f(int p) {}
       5  int g() {
       6    void f();
       7    g();
       8    return 0;
       9  }