Commit 127e4d19 by Richard Kenner

(do_jump_for_compare): Initialize JUMP_LABEL for the branch insn

before trying to invert it.

From-SVN: r6418
parent 0d9ac0a8
...@@ -8770,6 +8770,7 @@ do_jump_for_compare (comparison, if_false_label, if_true_label) ...@@ -8770,6 +8770,7 @@ do_jump_for_compare (comparison, if_false_label, if_true_label)
if (branch != get_last_insn ()) if (branch != get_last_insn ())
abort (); abort ();
JUMP_LABEL (branch) = if_false_label;
if (! invert_jump (branch, if_false_label)) if (! invert_jump (branch, if_false_label))
{ {
if_true_label = gen_label_rtx (); if_true_label = gen_label_rtx ();
......
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