* jump.c (squeeze_notes): Revert 2000-05-12 change.
authorRichard Henderson <rth@redhat.com>
Sun, 11 Feb 2001 06:19:29 +0000 (22:19 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 11 Feb 2001 06:19:29 +0000 (22:19 -0800)
From-SVN: r39582

gcc/ChangeLog
gcc/jump.c

index 05056df2e3f4d6e51599bde742e39fbfe7967485..84a0934610e9920febf1d5c4bba8039d72c1a887 100644 (file)
@@ -1,3 +1,7 @@
+2001-02-10  Richard Henderson  <rth@redhat.com>
+
+       * jump.c (squeeze_notes): Revert 2000-05-12 change.
+
 2001-02-10  Anthony Green  <green@redhat.com>
 
        * cpp.texi (Standard Predefined): Add documentation for
index 6e1601400f6a4f64ea3878aa03db5df9ca7ee670..978b2666a0e05940ac1e299a1d0dbdc45d5ebb35 100644 (file)
@@ -1321,10 +1321,10 @@ duplicate_loop_exit_test (loop_start)
 }
 \f
 /* 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;