summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorJason Merrill <merrill@gnu.org>1996-12-14 00:45:54 +0000
committerJason Merrill <merrill@gnu.org>1996-12-14 00:45:54 +0000
commit58d1a58230888a6aa073bd0de2e102b9028575bf (patch)
tree757a999db4f245581b9dc81c8e6a8e995ae71785 /gcc/toplev.c
parent444a059e63d451801cd1715068e8064fda46a153 (diff)
downloadgcc-58d1a58230888a6aa073bd0de2e102b9028575bf.tar.gz
remove accidental change
From-SVN: r13310
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c55
1 files changed, 0 insertions, 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
-}