Commit 57c49199 by Nathan Sidwell Committed by Nathan Sidwell

* hash-table.h (hash_table_mod1): Fix indentation.

From-SVN: r249925
parent 2f70a979
2017-07-03 Nathan Sidwell <nathan@acm.org>
* hash-table.h (hash_table_mod1): Fix indentation.
2017-07-02 Jan Hubicka <hubicka@ucw.cz> 2017-07-02 Jan Hubicka <hubicka@ucw.cz>
PR middle-end/81290 PR middle-end/81290
......
...@@ -325,7 +325,7 @@ hash_table_mod1 (hashval_t hash, unsigned int index) ...@@ -325,7 +325,7 @@ hash_table_mod1 (hashval_t hash, unsigned int index)
{ {
const struct prime_ent *p = &prime_tab[index]; const struct prime_ent *p = &prime_tab[index];
gcc_checking_assert (sizeof (hashval_t) * CHAR_BIT <= 32); 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. */ /* Compute the secondary table index for HASH given current prime index. */
......
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