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

From-SVN: r8042
This commit is contained in:
Jim Wilson 1994-09-08 11:38:30 -07:00
parent 31533f561d
commit 480eac3b81
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}