diff options
author | Alan Modra <amodra@bigpond.net.au> | 2008-08-17 03:12:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2008-08-17 03:12:50 +0000 |
commit | b71af5a5fa4202206bd55653de512a6cd2ed4da0 (patch) | |
tree | 9db55ba56c9fac17c5a7f72f885761e1968320a9 /include | |
parent | 936ab5dbb179d3c27e270ae361e845df8687d621 (diff) | |
download | binutils-redhat-b71af5a5fa4202206bd55653de512a6cd2ed4da0.tar.gz |
bfd/
* bfd.c (struct _bfd): Correct outsymbols comment.
* bfd-in2.h: Regenerate.
* linker.c (bfd_generic_link_read_symbols): Renamed from..
(generic_link_read_symbols): ..this, and made global.
include/
* bfdlink.h (bfd_generic_link_read_symbols): Declare.
ld/
PR 6478
* ldcref.c (check_local_sym_xref): Use bfd_generic_link_read_symbols.
Don't free symbol pointer array.
(check_refs): Likewise.
* ldmain.c (warning_callback): Likewise.
* ldmisc.c (vfinfo): Likewise.
* pe-dll.c (process_def_file): Likewise.
(pe_walk_relocs_of_symbol, generate_reloc): Likewise.
* emultempl/pe.em (pe_find_data_imports): Likewise.
(gld_${EMULATION_NAME}_after_open): Likewise.
* emultempl/pep.em (pep_find_data_imports): Likewise.
(gld_${EMULATION_NAME}_after_open): Likewise.
* ldlang.h (lang_input_statement_type): Delete asymbols, symbol_count,
passive_position, closed.
* ldlang.c (new_afile): Don't set asymbols and symbol_count.
* ldmain.c (add_archive_element): xcalloc lang_input_statement_type.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/bfdlink.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a1e31a64db..c86f60089a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2008-08-17 Alan Modra <amodra@bigpond.net.au> + + * bfdlink.h (bfd_generic_link_read_symbols): Declare. + 2008-08-08 Anatoly Sokolov <aesok@post.ru> * elf/avr.h (E_AVR_MACH_AVR25, E_AVR_MACH_AVR31, diff --git a/include/bfdlink.h b/include/bfdlink.h index e683310283..d27b5388d3 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -198,6 +198,9 @@ extern void bfd_link_add_undef extern void bfd_link_repair_undef_list (struct bfd_link_hash_table *table); +/* Read symbols and cache symbol pointer array in outsymbols. */ +extern bfd_boolean bfd_generic_link_read_symbols (bfd *); + struct bfd_sym_chain { struct bfd_sym_chain *next; |