diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-03-15 07:17:02 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-03-15 07:17:02 -0500 |
commit | fa1610e95b31962667db9ac4c2553227bd236c52 (patch) | |
tree | bca95f11a70f228c00ae62abce352bd4df9bda27 /gcc/sdbout.c | |
parent | 29ae50126345055d032f8725be11c02441892542 (diff) | |
download | gcc-fa1610e95b31962667db9ac4c2553227bd236c52.zip gcc-fa1610e95b31962667db9ac4c2553227bd236c52.tar.gz gcc-fa1610e95b31962667db9ac4c2553227bd236c52.tar.bz2 |
Change all calls to eliminate_regs.
From-SVN: r13705
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 788061c..12924c0 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -1,5 +1,5 @@ /* Output sdb-format symbol table information from GNU compiler. - Copyright (C) 1988, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. + Copyright (C) 1988, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -787,7 +787,7 @@ sdbout_symbol (decl, local) if (DECL_RTL (decl) == 0) return; - DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX); + DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX, 0); #ifdef LEAF_REG_REMAP if (leaf_function) leaf_renumber_regs_insn (DECL_RTL (decl)); @@ -1287,8 +1287,8 @@ sdbout_parms (parms) /* Perform any necessary register eliminations on the parameter's rtl, so that the debugging output will be accurate. */ DECL_INCOMING_RTL (parms) = - eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX); - DECL_RTL (parms) = eliminate_regs (DECL_RTL (parms), 0, NULL_RTX); + eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX, 0); + DECL_RTL (parms) = eliminate_regs (DECL_RTL (parms), 0, NULL_RTX, 0); if (PARM_PASSED_IN_MEMORY (parms)) { |