diff options
Diffstat (limited to 'gcc/hash-table.h')
-rw-r--r-- | gcc/hash-table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hash-table.h b/gcc/hash-table.h index 443d16c1837..64d3157953c 100644 --- a/gcc/hash-table.h +++ b/gcc/hash-table.h @@ -325,7 +325,7 @@ hash_table_mod1 (hashval_t hash, unsigned int index) { const struct prime_ent *p = &prime_tab[index]; gcc_checking_assert (sizeof (hashval_t) * CHAR_BIT <= 32); - return mul_mod (hash, p->prime, p->inv, p->shift); + return mul_mod (hash, p->prime, p->inv, p->shift); } /* Compute the secondary table index for HASH given current prime index. */ |