mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 23:31:21 +08:00
* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
From-SVN: r65214
This commit is contained in:
parent
55a2af0c42
commit
bcc53e2a94
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user