diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-08-25 08:20:11 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-08-25 08:20:11 +0000 |
commit | 8b63d0e5c80dab3e5fe840f4cb83ab0c48f6a0fa (patch) | |
tree | cd53bb99b549809d25953645bf0429fe0398dd19 /gcc/insn-notes.def | |
parent | 078e3ffed87d834eef232a5b1a0dd0a4c21ef60e (diff) | |
download | gcc-8b63d0e5c80dab3e5fe840f4cb83ab0c48f6a0fa.tar.gz |
cfglayout.c (duplicate_insn_chain): Remove references to NOTE_INSN_LOOP_VTOP and NOTE_INSN_LOOP_CONT.
2004-04-25 Paolo Bonzini <bonzini@gnu.org>
* cfglayout.c (duplicate_insn_chain): Remove references to
NOTE_INSN_LOOP_VTOP and NOTE_INSN_LOOP_CONT.
* cfgloop.h (struct loop): Remove fields vtop, cont and cont_dominator.
* cfgrtl.c (rtl_delete_block): Remove handling of NOTE_INSN_LOOP_CONT.
* final.c (final_scan_insn): Remove references to NOTE_INSN_LOOP_VTOP
and NOTE_INSN_LOOP_CONT.
* insn-notes.def (NOTE_INSN_LOOP_VTOP, NOTE_INSN_LOOP_CONT): Remove.
* jump.c (squeeze_notes): Remove references to NOTE_INSN_LOOP_VTOP
and NOTE_INSN_LOOP_CONT.
* loop.c (scan_loops, find_and_verify_loops, for_each_insn_in_loop,
check_dbra_loop, loop_dump_aux): Remove references to removed notes
and fields.
* reorg.c (mostly_true_jump): Do not rely on NOTE_INSN_LOOP_VTOPs.
* unroll.c (unroll_loop, copy_loop_body, loop_iterations): Remove
references to removed notes and fields.
(subtract_reg_term, ujump_to_loop_cont): Remove.
From-SVN: r86542
Diffstat (limited to 'gcc/insn-notes.def')
-rw-r--r-- | gcc/insn-notes.def | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/insn-notes.def b/gcc/insn-notes.def index 44dbb20d525..95712053c41 100644 --- a/gcc/insn-notes.def +++ b/gcc/insn-notes.def @@ -47,11 +47,6 @@ INSN_NOTE (BLOCK_END) INSN_NOTE (LOOP_BEG) INSN_NOTE (LOOP_END) -/* Generated at the place in a loop that `continue' jumps to. */ -INSN_NOTE (LOOP_CONT) -/* Generated at the start of a duplicated exit test. */ -INSN_NOTE (LOOP_VTOP) - /* This note indicates the start of the real body of the function, i.e. the point just after all of the parms have been moved into their homes, etc. */ |