mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
(bfd_hash_set_default_size): Add more entries to the hash_size_primes table.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2005-12-29 Nick Clifton <nickc@redhat.com>
|
2005-12-29 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* hash.c (bfd_hash_set_default_size): Add more entries to the
|
||||||
|
hash_size_primes table.
|
||||||
|
|
||||||
* stabs.c (_bfd_link_section_stabs): Use bfd_hash_table_init
|
* stabs.c (_bfd_link_section_stabs): Use bfd_hash_table_init
|
||||||
rather than bfd_hash_table_init_n(...,251) so that the size of the
|
rather than bfd_hash_table_init_n(...,251) so that the size of the
|
||||||
hash table can be controlled by the user.
|
hash table can be controlled by the user.
|
||||||
|
@ -492,7 +492,7 @@ bfd_hash_set_default_size (bfd_size_type hash_size)
|
|||||||
/* Extend this prime list if you want more granularity of hash table size. */
|
/* Extend this prime list if you want more granularity of hash table size. */
|
||||||
static const bfd_size_type hash_size_primes[] =
|
static const bfd_size_type hash_size_primes[] =
|
||||||
{
|
{
|
||||||
1021, 4051, 8599, 16699
|
251, 509, 1021, 2039, 4051, 8599, 16699, 32749
|
||||||
};
|
};
|
||||||
size_t index;
|
size_t index;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user