Commit 777e434c by Richard Kenner

(jump_optimize): Insert conditional move after jump insn instead of

before.

From-SVN: r12745
parent bdd4c95a
...@@ -1140,7 +1140,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) ...@@ -1140,7 +1140,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
end_sequence (); end_sequence ();
emit_insns_before (seq1, temp5); emit_insns_before (seq1, temp5);
emit_insns_before (seq2, insn); /* Insert conditional move after insn, to be sure that
the jump and a possible compare won't be separated */
emit_insns_after (seq2, insn);
/* ??? We can also delete the insn that sets X to A. /* ??? We can also delete the insn that sets X to A.
Flow will do it too though. */ Flow will do it too though. */
......
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