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/reload.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/reload.c')
-rw-r--r-- | gcc/reload.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index b0fd66b..40ab588 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -673,7 +673,7 @@ get_secondary_mem (x, mode, opnum, type) /* Get a version of the address doing any eliminations needed. If that didn't give us a new MEM, make a new one if it isn't valid. */ - loc = eliminate_regs (secondary_memlocs[(int) mode], VOIDmode, NULL_RTX); + loc = eliminate_regs (secondary_memlocs[(int) mode], VOIDmode, NULL_RTX, 0); mem_valid = strict_memory_address_p (mode, XEXP (loc, 0)); if (! mem_valid && loc == secondary_memlocs[(int) mode]) @@ -2604,7 +2604,7 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) /* We must rerun eliminate_regs, in case the elimination offsets have changed. */ rtx address = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], - 0, NULL_RTX), + 0, NULL_RTX, 0), 0); if (rtx_varies_p (address)) @@ -4057,7 +4057,7 @@ find_reloads_toplev (x, opnum, type, ind_levels, is_set_dest) /* We must rerun eliminate_regs, in case the elimination offsets have changed. */ rtx addr = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, - NULL_RTX), + NULL_RTX, 0), 0); if (rtx_varies_p (addr)) @@ -4141,7 +4141,7 @@ find_reloads_toplev (x, opnum, type, ind_levels, is_set_dest) /* We must rerun eliminate_regs, in case the elimination offsets have changed. */ rtx addr = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, - NULL_RTX), + NULL_RTX, 0), 0); if (BYTES_BIG_ENDIAN) { @@ -4181,7 +4181,7 @@ make_memloc (ad, regno) register int i; /* We must rerun eliminate_regs, in case the elimination offsets have changed. */ - rtx tem = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, NULL_RTX), + rtx tem = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, NULL_RTX, 0), 0); #if 0 /* We cannot safely reuse a memloc made here; |