From: schwab Date: Thu, 18 Sep 2003 09:10:40 +0000 (+0000) Subject: * simple.c (bfd_simple_get_relocated_section_contents): Use X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=321a89135eefd4c8d6d5ed605213c6b753e10d1b;p=pf3gnuchains%2Fpf3gnuchains3x.git * simple.c (bfd_simple_get_relocated_section_contents): Use _bfd_generic_link_hash_table_create instead of bfd_link_hash_table_create. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a2f8f86e2c..a7ead7e54d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2003-09-18 Andreas Schwab + + * simple.c (bfd_simple_get_relocated_section_contents): Use + _bfd_generic_link_hash_table_create instead of + bfd_link_hash_table_create. + 2003-09-10 H.J. Lu * elfxx-ia64.c (elfNN_ia64_special_sections): Mark all sections diff --git a/bfd/simple.c b/bfd/simple.c index c2a741c6f9..9044c28b38 100644 --- a/bfd/simple.c +++ b/bfd/simple.c @@ -185,7 +185,7 @@ bfd_simple_get_relocated_section_contents (bfd *abfd, memset (&link_info, 0, sizeof (link_info)); link_info.input_bfds = abfd; - link_info.hash = bfd_link_hash_table_create (abfd); + link_info.hash = _bfd_generic_link_hash_table_create (abfd); link_info.callbacks = &callbacks; callbacks.warning = simple_dummy_warning; callbacks.undefined_symbol = simple_dummy_undefined_symbol;