]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST.
authorAlexandre Oliva <aoliva@redhat.com>
Tue, 28 Aug 2001 22:20:40 +0000 (22:20 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Tue, 28 Aug 2001 22:20:40 +0000 (22:20 +0000)
* jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not
INSN_LIST.

From-SVN: r45242

gcc/ChangeLog
gcc/jump.c

index cacbe404953c20a46e439f271eda50dfa0feb847..a01c992d2af12442c826e4559916f13b935df334 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
+
+       * jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not
+       INSN_LIST.
+
 2001-08-28  Richard Henderson  <rth@redhat.com>
 
        * config/ia64/ia64.md (andcmbi3, iorcmbi3): Fix typos.
index e8a859423edca21b6368ba60ecc2c1f1d73736ea..692c0b5a96577546f6960b9cf9973f50203fe274 100644 (file)
@@ -1474,7 +1474,7 @@ mark_jump_label (x, insn, in_mem)
                   that are the targets of jumps, must have a
                   REG_LABEL note.  */
                if (! find_reg_note (insn, REG_LABEL, label))
-                 REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_LABEL, label,
+                 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_LABEL, label,
                                                        REG_NOTES (insn));
              }
          }