aboutsummaryrefslogtreecommitdiff
path: root/gcc/jump.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-02-10 22:19:29 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-02-10 22:19:29 -0800
commit7f437481f274a9cc40e2bede53c650330cafc6f2 (patch)
tree4db0196d6616be3bc183028e724590d0cfba2350 /gcc/jump.c
parentb80253d7c0762d43d0d4ba7a7e99baba227ed930 (diff)
downloadgcc-7f437481f274a9cc40e2bede53c650330cafc6f2.zip
gcc-7f437481f274a9cc40e2bede53c650330cafc6f2.tar.gz
gcc-7f437481f274a9cc40e2bede53c650330cafc6f2.tar.bz2
* jump.c (squeeze_notes): Revert 2000-05-12 change.
From-SVN: r39582
Diffstat (limited to 'gcc/jump.c')
-rw-r--r--gcc/jump.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 6e16014..978b2666 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -1321,10 +1321,10 @@ duplicate_loop_exit_test (loop_start)
}
/* Move all block-beg, block-end, loop-beg, loop-cont, loop-vtop, loop-end,
- eh-beg, eh-end notes between START and END out before START. Assume that
- END is not such a note. START may be such a note. Returns the value
- of the new starting insn, which may be different if the original start
- was such a note. */
+ notes between START and END out before START. Assume that END is not
+ such a note. START may be such a note. Returns the value of the new
+ starting insn, which may be different if the original start was such a
+ note. */
rtx
squeeze_notes (start, end)
@@ -1342,9 +1342,7 @@ squeeze_notes (start, end)
|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END
|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT
- || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP
- || NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG
- || NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END))
+ || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP))
{
if (insn == start)
start = next;