Commit c13210e9 by Mike Stump

* flow.c (find_basic_blocks): Fix end case bug.

From-SVN: r14257
parent 69d02b67
......@@ -608,7 +608,7 @@ find_basic_blocks (f, nonlocal_label_list)
to as live. */
for (insn = basic_block_head[i];
insn != basic_block_end[i];
insn != NEXT_INSN (basic_block_end[i]);
insn = NEXT_INSN (insn))
{
if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
......
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