diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-15 17:55:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-15 17:55:58 +0000 |
commit | 6182a80f9ca413f49350c49e938a2cbfe21663e9 (patch) | |
tree | 83b6fb18e33436103a7c2a0c17e90eae2899f811 /gcc/caller-save.c | |
parent | 2948450ddbe2ce320cd3740cb3a5b46be5edc07d (diff) | |
download | gcc-6182a80f9ca413f49350c49e938a2cbfe21663e9.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17105 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/caller-save.c')
-rw-r--r-- | gcc/caller-save.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/caller-save.c b/gcc/caller-save.c index f563637b413..07c7da74f5a 100644 --- a/gcc/caller-save.c +++ b/gcc/caller-save.c @@ -19,6 +19,7 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "config.h" +#include <stdio.h> #include "rtl.h" #include "insn-config.h" #include "flags.h" @@ -335,7 +336,7 @@ setup_save_areas (pchanged) for (j = 1; j <= MOVE_MAX / UNITS_PER_WORD; j++) if (regno_save_mem[i][j] != 0) ok &= strict_memory_address_p (GET_MODE (regno_save_mem[i][j]), - XEXP (eliminate_regs (regno_save_mem[i][j], 0, NULL_RTX, 1), 0)); + XEXP (eliminate_regs (regno_save_mem[i][j], 0, NULL_RTX), 0)); return ok; } |