This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/48176] [4.6/4.7 Regression] .debug_aranges is no longer emitted
- From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 18 Mar 2011 10:05:46 +0000
- Subject: [Bug debug/48176] [4.6/4.7 Regression] .debug_aranges is no longer emitted
- Auto-submitted: auto-generated
- References: <bug-48176-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48176
--- Comment #13 from Eric Botcazou <ebotcazou at gcc dot gnu.org> 2011-03-18 10:05:32 UTC ---
> That is related to .debug_ranges, not .debug_aranges.
Ah, OK. Your solution:
(arange_table_in_use || text_section_used || cold_text_section_used)
seems indeed to be the best one, you might even want to write it as:
(text_section_used || cold_text_section_used || arange_table_in_use)
to match the layout of output_aranges. Thanks for debugging this.