Commit 7bd5ed5c by Graham Stott Committed by Graham Stott

* emit-rtl.c (reorder_insns): Don't set BB for a BARRIER insn.

From-SVN: r84871
parent 1792f52d
2004-07-17 Graham Stott <graham.stott@btinternet.com>
* emit-rtl.c (reorder_insns): Don't set BB for a BARRIER insn.
2004-07-17 Toon Moene <toon@moene.indiv.nluug.nl> 2004-07-17 Toon Moene <toon@moene.indiv.nluug.nl>
* doc/sourcebuild.texi: Remove libf2c entry. * doc/sourcebuild.texi: Remove libf2c entry.
......
...@@ -3790,6 +3790,7 @@ reorder_insns (rtx from, rtx to, rtx after) ...@@ -3790,6 +3790,7 @@ reorder_insns (rtx from, rtx to, rtx after)
BB_END (bb) = to; BB_END (bb) = to;
for (x = from; x != NEXT_INSN (to); x = NEXT_INSN (x)) for (x = from; x != NEXT_INSN (to); x = NEXT_INSN (x))
if (!BARRIER_P (x))
set_block_for_insn (x, bb); set_block_for_insn (x, bb);
} }
} }
......
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