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

From-SVN: r84871
This commit is contained in:
Graham Stott 2004-07-17 14:22:42 +00:00 committed by Graham Stott
parent 1792f52d3a
commit 7bd5ed5c37
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* doc/sourcebuild.texi: Remove libf2c entry.

View File

@ -3790,7 +3790,8 @@ reorder_insns (rtx from, rtx to, rtx after)
BB_END (bb) = to;
for (x = from; x != NEXT_INSN (to); x = NEXT_INSN (x))
set_block_for_insn (x, bb);
if (!BARRIER_P (x))
set_block_for_insn (x, bb);
}
}