* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.

From-SVN: r65214
This commit is contained in:
Jan Hubicka 2003-04-03 22:28:39 +02:00 committed by Jan Hubicka
parent 55a2af0c42
commit bcc53e2a94
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Apr 3 22:27:40 CEST 2003 Jan Hubicka <jh@suse.cz>
* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
2003-04-03 Eric Botcazou <ebotcazou@libertysurf.fr>
PR optimization/10157

View File

@ -462,7 +462,8 @@ update_bb_for_insn (bb)
for (insn = bb->head; ; insn = NEXT_INSN (insn))
{
set_block_for_insn (insn, bb);
if (GET_CODE (insn) != BARRIER)
set_block_for_insn (insn, bb);
if (insn == bb->end)
break;
}