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/dbxout.c | |
parent | a701efba7e27b3a5f1a6c11071c30140de97a5b0 (diff) | |
download | gcc-1914f5da249e2785a8b18d96b026ea9d94a89fe3.zip gcc-1914f5da249e2785a8b18d96b026ea9d94a89fe3.tar.gz gcc-1914f5da249e2785a8b18d96b026ea9d94a89fe3.tar.bz2 |
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/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 00bbcc8..11af421 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1863,7 +1863,7 @@ dbxout_symbol (decl, local) /* else it is something we handle like a normal variable. */ } - 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)); @@ -2184,8 +2184,8 @@ dbxout_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); #ifdef LEAF_REG_REMAP if (leaf_function) { |