OSDN Git Service

* combine.c (distribute_notes): Don't add REG_LABEL to jump insn.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 2 Sep 2004 23:55:09 +0000 (23:55 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 2 Sep 2004 23:55:09 +0000 (23:55 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87002 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/combine.c

index b6e3cb2..758a33a 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-02  Roman Zippel  <zippel@linux-m68k.org>
+       * combine.c (distribute_notes): Don't add REG_LABEL to jump insn.
+
 2004-09-02  Eric Christopher  <echristo@redhat.com>
 
        * builtins.c (expand_builtin_cabs): Delete.
index 4bd1555..be1a08c 100644 (file)
@@ -11839,21 +11839,25 @@ distribute_notes (rtx notes, rtx from_insn, rtx i3, rtx i2)
                place = i2;
            }
 
-         /* Don't attach REG_LABEL note to a JUMP_INSN which has
-            JUMP_LABEL already.  Instead, decrement LABEL_NUSES.  */
-         if (place && JUMP_P (place) && JUMP_LABEL (place))
+         /* Don't attach REG_LABEL note to a JUMP_INSN.  Add
+            a JUMP_LABEL instead or decrement LABEL_NUSES.  */
+         if (place && JUMP_P (place))
            {
-             if (JUMP_LABEL (place) != XEXP (note, 0))
+             if (!JUMP_LABEL (place))
+               JUMP_LABEL (place) = XEXP (note, 0);
+             else if (JUMP_LABEL (place) != XEXP (note, 0))
                abort ();
-             if (LABEL_P (JUMP_LABEL (place)))
+             else if (LABEL_P (JUMP_LABEL (place)))
                LABEL_NUSES (JUMP_LABEL (place))--;
              place = 0;
            }
-         if (place2 && JUMP_P (place2) && JUMP_LABEL (place2))
+         if (place2 && JUMP_P (place2))
            {
-             if (JUMP_LABEL (place2) != XEXP (note, 0))
+             if (!JUMP_LABEL (place2))
+               JUMP_LABEL (place2) = XEXP (note, 0);
+             else if (JUMP_LABEL (place2) != XEXP (note, 0))
                abort ();
-             if (LABEL_P (JUMP_LABEL (place2)))
+             else if (LABEL_P (JUMP_LABEL (place2)))
                LABEL_NUSES (JUMP_LABEL (place2))--;
              place2 = 0;
            }