From b0382a8ecda8fa7089670a8d1cf0cf02cc5d2055 Mon Sep 17 00:00:00 2001 From: aoliva Date: Tue, 28 Aug 2001 22:20:40 +0000 Subject: [PATCH] * jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45242 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/jump.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cacbe40..a01c992 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-28 Alexandre Oliva + + * jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not + INSN_LIST. + 2001-08-28 Richard Henderson * config/ia64/ia64.md (andcmbi3, iorcmbi3): Fix typos. diff --git a/gcc/jump.c b/gcc/jump.c index e8a8594..692c0b5 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -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)); } } -- 2.7.4