Commit f085c9cd by Richard Kenner

(combine_instructions): Fix typo on test of basic block number.

From-SVN: r5134
parent cc08b87d
...@@ -537,7 +537,7 @@ combine_instructions (f, nregs) ...@@ -537,7 +537,7 @@ combine_instructions (f, nregs)
next = 0; next = 0;
/* If INSN starts a new basic block, update our basic block number. */ /* If INSN starts a new basic block, update our basic block number. */
if (this_basic_block < n_basic_blocks + 1 if (this_basic_block + 1 < n_basic_blocks
&& basic_block_head[this_basic_block + 1] == insn) && basic_block_head[this_basic_block + 1] == insn)
this_basic_block++; this_basic_block++;
......
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