Commit e26a82e4 by Jim Wilson

(jump_optimize): When optimize conditional jump around

unconditional jump, handle case where prev_label can be zero.

From-SVN: r5246
parent 549a367a
......@@ -1642,7 +1642,8 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
rtx prev_uses = prev_nonnote_insn (reallabelprev);
rtx prev_label = JUMP_LABEL (insn);
++LABEL_NUSES (prev_label);
if (prev_label)
++LABEL_NUSES (prev_label);
if (invert_jump (insn, JUMP_LABEL (reallabelprev)))
{
......@@ -1671,7 +1672,7 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
/* We can now safely delete the label if it is unreferenced
since the delete_insn above has deleted the BARRIER. */
if (--LABEL_NUSES (prev_label) == 0)
if (prev_label && --LABEL_NUSES (prev_label) == 0)
delete_insn (prev_label);
continue;
}
......
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