diff options
author | Richard Henderson <rth@cygnus.com> | 1997-12-15 09:55:58 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1997-12-15 09:55:58 -0800 |
commit | 1914f5da249e2785a8b18d96b026ea9d94a89fe3 (patch) | |
tree | 83b6fb18e33436103a7c2a0c17e90eae2899f811 /gcc/sdbout.c | |
parent | a701efba7e27b3a5f1a6c11071c30140de97a5b0 (diff) | |
download | gcc-1914f5da249e2785a8b18d96b026ea9d94a89fe3.tar.gz |
reload.h, [...]: Revert March 15 change.
* reload.h, reload1.c (eliminate_regs), caller-save.c, dbxout.c,
dwarfout.c, dwarf2out.c, reload.c, sdbout.c: Revert March 15 change.
* reload.c (push_reload): If WORD_REGISTER_OPERATIONS, reload the
SUBREG_REG if the word count is unchanged.
* reload1.c (eliminate_regs) [case SET]: If W_R_O, preserve
subregs of identical word size for push_reload.
From-SVN: r17105
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index c42afdb28ca..ef1ff29604d 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -789,7 +789,7 @@ sdbout_symbol (decl, local) if (DECL_RTL (decl) == 0) return; - DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX, 0); + DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX); #ifdef LEAF_REG_REMAP if (leaf_function) leaf_renumber_regs_insn (DECL_RTL (decl)); @@ -1289,8 +1289,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, 0); - DECL_RTL (parms) = eliminate_regs (DECL_RTL (parms), 0, NULL_RTX, 0); + = eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX); + DECL_RTL (parms) = eliminate_regs (DECL_RTL (parms), 0, NULL_RTX); if (PARM_PASSED_IN_MEMORY (parms)) { |