Commit 69145bcc by John Carr Committed by Jeff Law

dwarf2out.c (dwarf2out_frame_init): Test value of DWARF2_UNWIND_INFO.

        * dwarf2out.c (dwarf2out_frame_init): Test value of DWARF2_UNWIND_INFO.
        * mips/sni-svr4.h: Define DWARF2_UNWIND_INFO as 0.

From-SVN: r17499
parent 4926b75a
Tue Jan 27 00:26:50 1998 John Carr <jfc@mit.edu>
* dwarf2out.c (dwarf2out_frame_init): Test value of DWARF2_UNWIND_INFO.
* mips/sni-svr4.h: Define DWARF2_UNWIND_INFO as 0.
Tue Jan 27 00:07:02 1998 Jeffrey A Law (law@cygnus.com) Tue Jan 27 00:07:02 1998 Jeffrey A Law (law@cygnus.com)
* emit-rtl.c (gen_lowpart_common): Handle more case where converting * emit-rtl.c (gen_lowpart_common): Handle more case where converting
......
...@@ -95,3 +95,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -95,3 +95,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef SDB_DEBUGGING_INFO #undef SDB_DEBUGGING_INFO
#undef MIPS_DEBUGGING_INFO #undef MIPS_DEBUGGING_INFO
#undef PREFERRED_DEBUGGING_TYPE #undef PREFERRED_DEBUGGING_TYPE
#define DWARF2_UNWIND_INFO 0
...@@ -1877,9 +1877,12 @@ dwarf2out_frame_init () ...@@ -1877,9 +1877,12 @@ dwarf2out_frame_init ()
sake of lookup_cfa. */ sake of lookup_cfa. */
#ifdef DWARF2_UNWIND_INFO #ifdef DWARF2_UNWIND_INFO
/* On entry, the Canonical Frame Address is at SP. */ if (DWARF2_UNWIND_INFO)
dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET); {
initial_return_save (INCOMING_RETURN_ADDR_RTX); /* On entry, the Canonical Frame Address is at SP. */
dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
initial_return_save (INCOMING_RETURN_ADDR_RTX);
}
#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