diff options
| -rw-r--r-- | gcc/dwarf2out.c | 1 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/debug/dwarf2/pr97060.c | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index bea02f9..4452b9fa 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -22859,6 +22859,7 @@ gen_subprogram_die (tree decl, dw_die_ref context_die) available. */ int declaration = (current_function_decl != decl + || (!DECL_INITIAL (decl) && !origin) || class_or_namespace_scope_p (context_die)); /* A declaration that has been previously dumped needs no diff --git a/gcc/testsuite/gcc.dg/debug/dwarf2/pr97060.c b/gcc/testsuite/gcc.dg/debug/dwarf2/pr97060.c new file mode 100644 index 0000000..c07b904 --- /dev/null +++ b/gcc/testsuite/gcc.dg/debug/dwarf2/pr97060.c @@ -0,0 +1,13 @@ +/* PR debug/97060 */ +/* { dg-do compile } */ +/* { dg-options "-g -dA" } */ +/* { dg-final { scan-assembler-times "DW_AT_declaration" 2 } } */ + +extern int foo (unsigned int, unsigned int); + +int +bar (void) +{ + foo (1, 2); + return 0; +} |
