From: Alexandre Oliva Date: Tue, 28 Aug 2001 22:20:40 +0000 (+0000) Subject: jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST. X-Git-Tag: prereleases/libstdc++-3.0.95~2382 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dde01439ea4977e8678c6cfc096c5a7d13fe821;p=thirdparty%2Fgcc.git jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST. * jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not INSN_LIST. From-SVN: r45242 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cacbe404953c..a01c992d2af1 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 e8a859423edc..692c0b5a9657 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)); } }