Commit da0c128e by Jeff Law

loop.c (move_movables): Clear INSN_CODE for eachinsn as we perform register replacements.

	* loop.c (move_movables): Clear INSN_CODE for eachinsn as
	we perform register replacements.
	(strength_reduce): Likewise.

From-SVN: r3254
parent cb25ac92
......@@ -1939,6 +1939,7 @@ move_movables (movables, threshold, insn_count, loop_start, end, nregs)
{
replace_regs (PATTERN (p), reg_map, nregs, 0);
replace_regs (REG_NOTES (p), reg_map, nregs, 0);
INSN_CODE (p) = -1;
}
}
......@@ -3926,6 +3927,7 @@ strength_reduce (scan_start, end, loop_top, insn_count,
{
replace_regs (PATTERN (p), reg_map, max_reg_before_loop, 0);
replace_regs (REG_NOTES (p), reg_map, max_reg_before_loop, 0);
INSN_CODE (p) = -1;
}
/* Unroll loops from within strength reduction so that we can use the
......
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