Commit 480eac3b by Jim Wilson

(mark_used_regs, case REG): Correct typo, use GET_MODE not GET_CODE.

From-SVN: r8042
parent 31533f56
......@@ -2408,7 +2408,7 @@ mark_used_regs (needed, live, x, final, insn)
if (regno < FIRST_PSEUDO_REGISTER
&& HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
{
int n = HARD_REGNO_NREGS (regno, GET_CODE (x));
int n = HARD_REGNO_NREGS (regno, GET_MODE (x));
while (--n >= 0)
some_needed |= dead_or_set_regno_p (insn, regno + n);
}
......
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