diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-23 10:33:38 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-23 10:33:38 +0000 |
commit | d6a6ac20ad735f41b4924f4320dc163d380f12cc (patch) | |
tree | b4875002f8168859c607632b90c826dc7f4b747a /gcc/jump.c | |
parent | 372df11115153051129ea8c4e7b7e97a60aece85 (diff) | |
download | gcc-d6a6ac20ad735f41b4924f4320dc163d380f12cc.tar.gz |
* cfgloopmanip.c (create_loop_notes): Removed.
* final.c (final_scan_insn): Do not handle loop notes.
* jump.c (squeeze_notes): Ditto.
* cfglayout.c (skip_insns_after_block,
duplicate_insn_chain): Ditto.
* cfgcleanup.c (rest_of_handle_jump2): Do not call
create_loop_notes.
* cfgloop.h (create_loop_notes): Declaration removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112316 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index 79a21b4d1ae..b60c2840720 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -260,11 +260,11 @@ mark_all_labels (rtx f) } } -/* Move all block-beg, block-end, loop-beg, loop-cont, loop-vtop, loop-end, - notes between START and END out before START. START and END may be such - notes. Returns the values of the new starting and ending insns, which - may be different if the original ones were such notes. - Return true if there were only such notes and no real instructions. */ +/* Move all block-beg, block-end and loop-beg notes between START and END out + before START. START and END may be such notes. Returns the values of the + new starting and ending insns, which may be different if the original ones + were such notes. Return true if there were only such notes and no real + instructions. */ bool squeeze_notes (rtx* startp, rtx* endp) @@ -282,9 +282,7 @@ squeeze_notes (rtx* startp, rtx* endp) next = NEXT_INSN (insn); if (NOTE_P (insn) && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END - || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG - || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG - || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)) + || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG)) { /* BLOCK_BEG or BLOCK_END notes only exist in the `final' pass. */ gcc_assert (NOTE_LINE_NUMBER (insn) != NOTE_INSN_BLOCK_BEG |