Commit 6a5293dc by Richard Stallman

*** empty log message ***

From-SVN: r1141
parent 71c4681d
......@@ -7432,6 +7432,14 @@ cse_basic_block (from, to, next_branch, around_loop)
if (JUMP_LABEL (insn) == to)
to_usage = 1;
/* Maybe TO was deleted because the jump is unconditional.
If so, there is nothing left in this basic block. */
/* ??? Perhaps it would be smarter to set TO
to whatever follows this insn,
and pretend the basic block had always ended here. */
if (INSN_DELETED_P (to))
break;
insn = PREV_INSN (to);
}
......
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