Commit 5dde0143 by Alexandre Oliva Committed by Alexandre Oliva

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
parent 1a27eec1
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.
......
......@@ -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));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment