mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 19:44:11 +08:00
(_bfd_link_section_stabs): Use bfd_hash_table_init rather than
bfd_hash_table_init_n(...,251) so that the size of the hash table can be controlled by the user.
This commit is contained in:
parent
36db13e724
commit
88a670df3c
@ -1,3 +1,9 @@
|
||||
2005-12-29 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* 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
|
||||
hash table can be controlled by the user.
|
||||
|
||||
2005-12-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
* elf32-hppa.c (elf32_hppa_size_dynamic_sections): Use info->executable
|
||||
|
@ -194,9 +194,8 @@ _bfd_link_section_stabs (bfd *abfd,
|
||||
goto error_return;
|
||||
/* Make sure the first byte is zero. */
|
||||
(void) _bfd_stringtab_add (sinfo->strings, "", TRUE, TRUE);
|
||||
if (! bfd_hash_table_init_n (&sinfo->includes,
|
||||
stab_link_includes_newfunc,
|
||||
251))
|
||||
if (! bfd_hash_table_init (&sinfo->includes,
|
||||
stab_link_includes_newfunc))
|
||||
goto error_return;
|
||||
sinfo->stabstr = bfd_make_section_anyway (abfd, ".stabstr");
|
||||
if (sinfo->stabstr == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user