Commit 511ef689 by Mark Wielaard Committed by Mark Wielaard

dwarf2out.c (size_of_aranges): Skip DECL_IGNORED_P functions.

From-SVN: r196889
parent cc1df30b
2013-03-21 Mark Wielaard <mjw@redhat.com>
* dwarf2out.c (size_of_aranges): Skip DECL_IGNORED_P functions.
2013-03-21 Uros Bizjak <ubizjak@gmail.com> 2013-03-21 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.md (*movdi_internal): Disparage slightly * config/i386/i386.md (*movdi_internal): Disparage slightly
......
...@@ -7848,6 +7848,8 @@ size_of_aranges (void) ...@@ -7848,6 +7848,8 @@ size_of_aranges (void)
FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde) FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
{ {
if (DECL_IGNORED_P (fde->decl))
continue;
if (!fde->in_std_section) if (!fde->in_std_section)
size += 2 * DWARF2_ADDR_SIZE; size += 2 * DWARF2_ADDR_SIZE;
if (fde->dw_fde_second_begin && !fde->second_in_std_section) if (fde->dw_fde_second_begin && !fde->second_in_std_section)
......
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