From 58d1a58230888a6aa073bd0de2e102b9028575bf Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Sat, 14 Dec 1996 00:45:54 +0000 Subject: [PATCH] remove accidental change From-SVN: r13310 --- gcc/toplev.c | 55 ---------------------------------------------------- 1 file changed, 55 deletions(-) diff --git a/gcc/toplev.c b/gcc/toplev.c index a0cfb4de5e2..7ddde13ac27 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4384,58 +4384,3 @@ debug_undef (lineno, buffer) dwarf2out_undef (lineno, buffer); #endif /* DWARF2_DEBUGGING_INFO */ } - -/* Record the relative location of the current stack frame at the PC value - indicated by LABEL if specified, or at the beginning of the function - if LABEL is NULL. RTL is either: - - a REG: The frame is at 0(REG). - a PLUS of a REG and a CONST_INT: The frame is at CONST(REG). */ - -void -debug_frame (label, rtl) - char *label; - rtx rtl; -{ -#ifdef DWARF2_DEBUGGING_INFO - if (write_symbols == DWARF2_DEBUG) - dwarf2out_def_cfa (label, rtl); -#endif -} - -/* Record that REGNO, a callee-saved register, has been saved somewhere. - LABEL is as for debug_frame. RTL is either: - - a REG: The register is saved in REG. - a CONST_INT: The register is saved at an offset of CONST - from the frame. */ - -void -debug_reg_save (label, regno, rtl) - char *label; - unsigned regno; - rtx rtl; -{ -#ifdef DWARF2_DEBUGGING_INFO - if (write_symbols == DWARF2_DEBUG) - dwarf2out_reg_save (label, regno, rtl); -#endif -} - -/* Record the location of the return address for the current frame. - LABEL is as for debug_frame. RTL is either: - - a REG: The return address is saved in REG. - a CONST_INT: The return address is saved at an offset of CONST - from the frame. */ - -void -debug_return_save (label, rtl) - char *label; - rtx rtl; -{ -#ifdef DWARF2_DEBUGGING_INFO - if (write_symbols == DWARF2_DEBUG) - dwarf2out_return_save (label, rtl); -#endif -} -- 2.30.2