Commit c5a36850 by Aldy Hernandez

Merge remote-tracking branch 'origin/aldyh/debug-early' into debug-early

Conflicts:
	gcc/ChangeLog.debug-early
	gcc/dwarf2out.c

From-SVN: r214912
parent 989f386c
...@@ -5032,6 +5032,10 @@ free_lang_data_in_decl (tree decl) ...@@ -5032,6 +5032,10 @@ free_lang_data_in_decl (tree decl)
{ {
gcc_assert (DECL_P (decl)); gcc_assert (DECL_P (decl));
/* Early dumping of DECLs before we lose language data. */
if (debug_info_level > DINFO_LEVEL_NONE)
dwarf2out_early_decl (decl);
/* Give the FE a chance to remove its own data first. */ /* Give the FE a chance to remove its own data first. */
lang_hooks.free_lang_data (decl); lang_hooks.free_lang_data (decl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment