diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-03-20 23:36:19 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-03-20 23:36:19 +0000 |
commit | 6dc132d920e943b96e9399248cd01d858757e08c (patch) | |
tree | 4fca9a05873d8122b9d0d978ce0c03a563449bdf /bfd/elf64-alpha.c | |
parent | a4cd38bc61cb34571f9c139ffc4c1ecf17988cb4 (diff) | |
download | gdb-6dc132d920e943b96e9399248cd01d858757e08c.zip gdb-6dc132d920e943b96e9399248cd01d858757e08c.tar.gz gdb-6dc132d920e943b96e9399248cd01d858757e08c.tar.bz2 |
2005-03-20 H.J. Lu <hongjiu.lu@intel.com>
* elf-bfd.h (elf_backend_data): Add int to
elf_backend_section_from_shdr.
(bfd_elf_section_data): Update comment for this_idx.
(_bfd_elf_make_section_from_shdr): Add int.
* elfxx-mips.h (_bfd_mips_elf_section_from_shdr): Likewise.
* elf.c (_bfd_elf_make_section_from_shdr): Take section index
and use it to set this_idx in bfd_elf_section_data.
(bfd_section_from_shdr): Pass shindex to
_bfd_elf_make_section_from_shdr.
(_bfd_elf_section_from_bfd_section): Use this_idx in
bfd_elf_section_data to find section index.
* elf32-arm.c (elf32_arm_section_from_shdr): Take section
index and pass it to _bfd_elf_make_section_from_shdr.
* elf32-i370.c(i370_elf_section_from_shdr): Likewise.
* elf32-ppc.c (ppc_elf_section_from_shdr): Likewise.
* elf32-sh64.c (sh64_backend_section_from_shdr): Likewise.
* elf32-v850.c (v850_elf_section_from_shdr): Likewise.
* elf64-alpha.c (elf64_alpha_section_from_shdr): Likewise.
* elf64-hppa.c (elf64_hppa_section_from_shdr): Likewise.
* elf64-x86-64.c (elf64_x86_64_section_from_shdr): Likewise.
* elfxx-ia64.c (elfNN_ia64_section_from_shdr): Likewise.
* elfxx-mips.c (_bfd_mips_elf_section_from_shdr): Likewise.
Diffstat (limited to 'bfd/elf64-alpha.c')
-rw-r--r-- | bfd/elf64-alpha.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index f0c22d9..966563c 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -72,8 +72,6 @@ static bfd_boolean elf64_alpha_mkobject PARAMS ((bfd *)); static bfd_boolean elf64_alpha_object_p PARAMS ((bfd *)); -static bfd_boolean elf64_alpha_section_from_shdr - PARAMS ((bfd *, Elf_Internal_Shdr *, const char *)); static bfd_boolean elf64_alpha_section_flags PARAMS ((flagword *, const Elf_Internal_Shdr *)); static bfd_boolean elf64_alpha_fake_sections @@ -2260,15 +2258,16 @@ elf64_alpha_relax_section (abfd, sec, link_info, again) #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so" /* Handle an Alpha specific section when reading an object file. This - is called when elfcode.h finds a section with an unknown type. + is called when bfd_section_from_shdr finds a section with an unknown + type. FIXME: We need to handle the SHF_ALPHA_GPREL flag, but I'm not sure how to. */ static bfd_boolean -elf64_alpha_section_from_shdr (abfd, hdr, name) - bfd *abfd; - Elf_Internal_Shdr *hdr; - const char *name; +elf64_alpha_section_from_shdr (bfd *abfd, + Elf_Internal_Shdr *hdr, + const char *name, + int shindex) { asection *newsect; @@ -2287,7 +2286,7 @@ elf64_alpha_section_from_shdr (abfd, hdr, name) return FALSE; } - if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name)) + if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex)) return FALSE; newsect = hdr->bfd_section; |