From 950904f8b72516e48a3edbec13c6d3fdcff82312 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Mon, 28 Aug 2017 13:13:23 +0000 Subject: re PR debug/81993 (-gsplit-dwarf removes some symbols, causing some undefined references) 2017-08-28 Richard Biener PR debug/81993 * dwarf2out.c (gen_remaining_tmpl_value_param_die_attributes): Do nothing for removed DIEs. From-SVN: r251382 --- gcc/dwarf2out.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/dwarf2out.c') diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 9fc32fe..574307e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -26037,7 +26037,8 @@ gen_remaining_tmpl_value_param_die_attribute (void) j = 0; FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table, i, e) { - if (!tree_add_const_value_attribute (e->die, e->arg)) + if (!e->die->removed + && !tree_add_const_value_attribute (e->die, e->arg)) { dw_loc_descr_ref loc = NULL; if (! early_dwarf -- cgit v1.1