Commit 2abec1b7 by Richard Kenner

(convert_move): Make copy of operands for REG_EQUAL note to avoid sharing RTL if…

(convert_move): Make copy of operands for REG_EQUAL note to avoid sharing RTL if called later than RTL generation...

(convert_move): Make copy of operands for REG_EQUAL note to avoid
sharing RTL if called later than RTL generation, though probably not
called after RTL generation.

From-SVN: r4339
parent a32fbc15
...@@ -862,7 +862,7 @@ convert_move (to, from, unsignedp) ...@@ -862,7 +862,7 @@ convert_move (to, from, unsignedp)
end_sequence (); end_sequence ();
emit_no_conflict_block (insns, to, from, NULL_RTX, emit_no_conflict_block (insns, to, from, NULL_RTX,
gen_rtx (equiv_code, to_mode, from)); gen_rtx (equiv_code, to_mode, copy_rtx (from)));
return; return;
} }
......
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