Commit 761fa0f7 by Kazu Hirata Committed by Kazu Hirata

reload1.c (check_eliminable_occurrences): Optimize the reset of can_eliminate.

	* reload1.c (check_eliminable_occurrences): Optimize the reset
	of can_eliminate.
	(eliminate_regs_in_insn): Likewise.

From-SVN: r77427
parent 15d72060
2004-02-06 Kazu Hirata <kazu@cs.umass.edu>
* reload1.c (check_eliminable_occurrences): Optimize the reset
of can_eliminate.
(eliminate_regs_in_insn): Likewise.
2004-02-06 Daniel Berlin <dberlin@dberlin.org>
Josef Zlomek <zlomekj@suse.cz>
......
......@@ -2834,7 +2834,7 @@ check_eliminable_occurrences (rtx x)
struct elim_table *ep;
for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
if (ep->from_rtx == x && ep->can_eliminate)
if (ep->from_rtx == x)
ep->can_eliminate = 0;
return;
}
......@@ -3100,7 +3100,7 @@ eliminate_regs_in_insn (rtx insn, int replace)
eliminate this reg. */
for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
ep++)
if (ep->from_rtx == orig_operand[i] && ep->can_eliminate)
if (ep->from_rtx == orig_operand[i])
ep->can_eliminate = 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment