(invalidate): Use proper type for in_table.

From-SVN: r4208
This commit is contained in:
Richard Kenner 1993-04-24 11:39:59 -04:00
parent 26300dcd14
commit 54b1de5550
1 changed files with 2 additions and 1 deletions

View File

@ -1496,7 +1496,8 @@ invalidate (x)
remove_from_table (lookup_for_remove (x, hash, GET_MODE (x)), hash);
else
{
int in_table = TEST_HARD_REG_BIT (hard_regs_in_table, regno);
HOST_WIDE_INT in_table
= TEST_HARD_REG_BIT (hard_regs_in_table, regno);
int endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
int tregno, tendregno;
register struct table_elt *p, *next;