summaryrefslogtreecommitdiff
path: root/gcc/hash-table.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2019-10-02 15:26:47 -0400
committerJason Merrill <jason@gcc.gnu.org>2019-10-02 15:26:47 -0400
commitc89844e5d30a5235960a2c627abc9369306fda61 (patch)
tree49f593d8b44f2a0038aa8a77148c902c63381b29 /gcc/hash-table.c
parentd61bff850d13ff103de3c2fb13d5e371996e1a3c (diff)
Add some hash_map_safe_* functions like vec_safe_*.
gcc/ * hash-map.h (default_hash_map_size): New variable. (create_ggc): Use it as default argument. (hash_map_maybe_create, hash_map_safe_get) (hash_map_safe_get_or_insert, hash_map_safe_put): New fns. gcc/cp/ * constexpr.c (maybe_initialize_fundef_copies_table): Remove. (get_fundef_copy): Use hash_map_safe_get_or_insert. * cp-objcp-common.c (cp_get_debug_type): Use hash_map_safe_*. * decl.c (store_decomp_type): Remove. (cp_finish_decomp): Use hash_map_safe_put. * init.c (get_nsdmi): Use hash_map_safe_*. * pt.c (store_defaulted_ttp, lookup_defaulted_ttp): Remove. (add_defaults_to_ttp): Use hash_map_safe_*. From-SVN: r276484
Diffstat (limited to 'gcc/hash-table.c')
-rw-r--r--gcc/hash-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hash-table.c b/gcc/hash-table.c
index e3b5d3da09e..3520c3bb596 100644
--- a/gcc/hash-table.c
+++ b/gcc/hash-table.c
@@ -78,7 +78,7 @@ struct prime_ent const prime_tab[] = {
unsigned int hash_table_sanitize_eq_limit;
/* The following function returns an index into the above table of the
- nearest prime number which is greater than N, and near a power of two. */
+ nearest prime number which is at least N, and near a power of two. */
unsigned int
hash_table_higher_prime_index (unsigned long n)