mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-24 18:55:57 +08:00
cfgrtl.c (flow_delete_block_noexpunge): Delete orphaned NOTE_INSN_LOOP_CONT notes when deleting basic blocks.
* cfgrtl.c (flow_delete_block_noexpunge): Delete orphaned NOTE_INSN_LOOP_CONT notes when deleting basic blocks. From-SVN: r57243
This commit is contained in:
parent
6d9f7a6866
commit
07532fad02
@ -1,3 +1,8 @@
|
||||
2002-09-17 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* cfgrtl.c (flow_delete_block_noexpunge): Delete orphaned
|
||||
NOTE_INSN_LOOP_CONT notes when deleting basic blocks.
|
||||
|
||||
2002-09-16 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* expr.c (emit_block_move): Set memory block size as appropriate
|
||||
|
@ -360,13 +360,15 @@ flow_delete_block_noexpunge (b)
|
||||
and remove the associated NOTE_INSN_EH_REGION_BEG and
|
||||
NOTE_INSN_EH_REGION_END notes. */
|
||||
|
||||
/* Get rid of all NOTE_INSN_PREDICTIONs hanging before the block. */
|
||||
/* Get rid of all NOTE_INSN_PREDICTIONs and NOTE_INSN_LOOP_CONTs
|
||||
hanging before the block. */
|
||||
|
||||
for (insn = PREV_INSN (b->head); insn; insn = PREV_INSN (insn))
|
||||
{
|
||||
if (GET_CODE (insn) != NOTE)
|
||||
break;
|
||||
if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION)
|
||||
if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION
|
||||
|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT)
|
||||
NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user