Commit 54b1de55 by Richard Kenner

(invalidate): Use proper type for in_table.

From-SVN: r4208
parent 26300dcd
...@@ -1496,7 +1496,8 @@ invalidate (x) ...@@ -1496,7 +1496,8 @@ invalidate (x)
remove_from_table (lookup_for_remove (x, hash, GET_MODE (x)), hash); remove_from_table (lookup_for_remove (x, hash, GET_MODE (x)), hash);
else 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 endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
int tregno, tendregno; int tregno, tendregno;
register struct table_elt *p, *next; register struct table_elt *p, *next;
......
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