(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
debug/
dwarf2/
pr97060.c
       1  /* PR debug/97060 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-g -dA" } */
       4  /* { dg-final { scan-assembler-times "DW_AT_declaration" 2 } } */
       5  
       6  extern int foo (unsigned int, unsigned int);
       7  
       8  int
       9  bar (void)
      10  {
      11    foo (1, 2);
      12    return 0;
      13  }