Commit b97d4c0b by Richard Henderson Committed by Richard Henderson

dwarf2out.c (dwarf2out_frame_finish): Never elide .debug_frame in favour of .eh_frame.

        * dwarf2out.c (dwarf2out_frame_finish): Never elide .debug_frame
        in favour of .eh_frame.

From-SVN: r45852
parent 2f9d51b8
2001-09-27 Richard Henderson <rth@redhat.com>
* dwarf2out.c (dwarf2out_frame_finish): Never elide .debug_frame
in favour of .eh_frame.
2001-09-27 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.h (FUNCTION_VALUE): Change hardcoded 33 and 3
......
......@@ -2095,17 +2095,10 @@ void
dwarf2out_frame_finish ()
{
/* Output call frame information. */
#ifdef MIPS_DEBUGGING_INFO
if (write_symbols == DWARF2_DEBUG)
output_call_frame_info (0);
if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
output_call_frame_info (1);
#else
int for_eh = (! USING_SJLJ_EXCEPTIONS
&& (flag_unwind_tables || flag_exceptions));
if (write_symbols == DWARF2_DEBUG || for_eh)
output_call_frame_info (for_eh);
#endif
}
/* And now, the subset of the debugging information support code necessary
......
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