Commit ddee9e8d by Richard Henderson Committed by Richard Henderson

dwarf2out.c (dwarf2out_frame_finish): Never emit .eh_frame if USING_SJLJ_EXCEPTIONS.

        * dwarf2out.c (dwarf2out_frame_finish): Never emit .eh_frame
        if USING_SJLJ_EXCEPTIONS.

From-SVN: r44893
parent eb20f668
2001-08-14 Richard Henderson <rth@redhat.com>
* dwarf2out.c (dwarf2out_frame_finish): Never emit .eh_frame
if USING_SJLJ_EXCEPTIONS.
2001-08-14 Steve Ellcey <sje@cup.hp.com> 2001-08-14 Steve Ellcey <sje@cup.hp.com>
* tlink.c (scan_linker_output): Check string for unsatisfied in * tlink.c (scan_linker_output): Check string for unsatisfied in
......
...@@ -2099,12 +2099,13 @@ dwarf2out_frame_finish () ...@@ -2099,12 +2099,13 @@ dwarf2out_frame_finish ()
#ifdef MIPS_DEBUGGING_INFO #ifdef MIPS_DEBUGGING_INFO
if (write_symbols == DWARF2_DEBUG) if (write_symbols == DWARF2_DEBUG)
output_call_frame_info (0); output_call_frame_info (0);
if (flag_unwind_tables || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)) if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
output_call_frame_info (1); output_call_frame_info (1);
#else #else
if (write_symbols == DWARF2_DEBUG int for_eh = (! USING_SJLJ_EXCEPTIONS
|| flag_unwind_tables || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)) && (flag_unwind_tables || flag_exceptions));
output_call_frame_info (1); if (write_symbols == DWARF2_DEBUG || for_eh)
output_call_frame_info (for_eh);
#endif #endif
} }
......
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