(attach_deaths): Correct typo, use GET_MODE not GET_CODE.

From-SVN: r8043
This commit is contained in:
Jim Wilson 1994-09-08 11:40:15 -07:00
parent 480eac3b81
commit babfe4370e
1 changed files with 1 additions and 1 deletions

View File

@ -2865,7 +2865,7 @@ attach_deaths (x, insn, set_p)
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);
}