diff options
author | Jeff Law <law@redhat.com> | 1994-06-27 00:17:41 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-06-27 00:17:41 +0000 |
commit | 6dde66d5693b9e45ebf7c1bdd98baf807bbb4708 (patch) | |
tree | 41f756b6ebdc526f624a3a7153d13b5feac8bda1 /bfd/libelf.h | |
parent | 9e4eebc20768c6a9b7e81a3d42f1dac9b7abe162 (diff) | |
download | gdb-6dde66d5693b9e45ebf7c1bdd98baf807bbb4708.zip gdb-6dde66d5693b9e45ebf7c1bdd98baf807bbb4708.tar.gz gdb-6dde66d5693b9e45ebf7c1bdd98baf807bbb4708.tar.bz2 |
* libelf.h (relocate_section): New argument "output_names" added
to prototype.
* elfcode.h (elf_link_input_bfd): New argument "output_names"
added to prototype of relocate_section. Pass the output symbol
names to relocate_section.
* elf32-i386.c (elf_i386_relocate_section): Use "output_names" to
determine the name of a local symbol.
* elf32-mips.c (mips_elf_relocate_section): Likewise.
* elf32-sparc.c (elf32_sparc_relocate_section): Likewise.
Diffstat (limited to 'bfd/libelf.h')
-rw-r--r-- | bfd/libelf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libelf.h b/bfd/libelf.h index cc6e4db..0522627 100644 --- a/bfd/libelf.h +++ b/bfd/libelf.h @@ -327,7 +327,7 @@ struct elf_backend_data PARAMS ((bfd *output_bfd, struct bfd_link_info *info, bfd *input_bfd, asection *input_section, bfd_byte *contents, Elf_Internal_Rela *relocs, Elf_Internal_Sym *local_syms, - asection **local_sections)); + asection **local_sections, char *output_names)); /* The FINISH_DYNAMIC_SYMBOL function is called by the ELF backend linker just before it writes a symbol out to the .dynsym section. |