Commit 9956bfc0 by Richard Kenner

(update_equiv_regs): Fix error in last change.

From-SVN: r13622
parent e99d6592
......@@ -1182,12 +1182,11 @@ update_equiv_regs ()
&& GET_CODE (insn) == INSN
&& reg_basic_block[regno] < 0)
{
int l, offset, bit;
int l, offset;
REGSET_ELT_TYPE bit;
emit_insn_before (copy_rtx (PATTERN (equiv_insn)),
insn);
REG_NOTES (PREV_INSN (insn)) =
REG_NOTES (equiv_insn);
emit_insn_before (copy_rtx (PATTERN (equiv_insn)), insn);
REG_NOTES (PREV_INSN (insn)) = REG_NOTES (equiv_insn);
PUT_CODE (equiv_insn, NOTE);
NOTE_LINE_NUMBER (equiv_insn) = NOTE_INSN_DELETED;
......
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