diff options
author | Alan Modra <amodra@gmail.com> | 2002-01-17 13:02:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-01-17 13:02:40 +0000 |
commit | af746e92cb01c5f1a2d0bdb194716a0542a86762 (patch) | |
tree | fd3becbca4116ca29eec1bc34dfcaec0c9fc5922 /bfd/elf-bfd.h | |
parent | 06f030db350108824d2a06fec35992ba084d92ca (diff) | |
download | gdb-af746e92cb01c5f1a2d0bdb194716a0542a86762.zip gdb-af746e92cb01c5f1a2d0bdb194716a0542a86762.tar.gz gdb-af746e92cb01c5f1a2d0bdb194716a0542a86762.tar.bz2 |
* elf-bfd.h (elf_backend_data <elf_backend_section_from_bfd_section>):
Remove "Elf_Internal_Shdr *" param.
(_bfd_mips_elf_section_from_bfd_section): Ditto.
* elf32-mips.c (_bfd_mips_elf_section_from_bfd_section): Ditto.
* elf32-m32r.c (_bfd_m32r_elf_section_from_bfd_section): Ditto.
* elf32-v850.c (v850_elf_section_from_bfd_section): Ditto.
* elf64-mmix.c (mmix_elf_section_from_bfd_section): Ditto.
* elfxx-ia64.c (elfNN_hpux_backend_section_from_bfd_section): Ditto.
* elf.c (_bfd_elf_section_from_bfd_section): Allow backend
function to override special sections. Remove hdr arg from
backend call, and don't loop.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index c5f7a74..4a1ee2a 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -493,7 +493,7 @@ struct elf_backend_data section, *RETVAL should be left unchanged. If it is not a normal ELF section *RETVAL should be set to the SHN_xxxx index. */ boolean (*elf_backend_section_from_bfd_section) - PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *, int *retval)); + PARAMS ((bfd *, asection *, int *retval)); /* If this field is not NULL, it is called by the add_symbols phase of a link just before adding a symbol to the global linker hash @@ -1541,7 +1541,7 @@ extern boolean _bfd_mips_elf_section_from_shdr extern boolean _bfd_mips_elf_fake_sections PARAMS ((bfd *, Elf_Internal_Shdr *, asection *)); extern boolean _bfd_mips_elf_section_from_bfd_section - PARAMS ((bfd *, Elf_Internal_Shdr *, asection *, int *)); + PARAMS ((bfd *, asection *, int *)); extern boolean _bfd_mips_elf_section_processing PARAMS ((bfd *, Elf_Internal_Shdr *)); extern void _bfd_mips_elf_symbol_processing |