* elfcode.h (elf_slurp_reloc_table_from_section): Don't canonicalize

ELF section symbols.
This commit is contained in:
Daniel Jacobowitz 2004-12-09 16:17:42 +00:00
parent dd22970fb5
commit f9cfae629f
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2004-12-09 Daniel Jacobowitz <dan@codesourcery.com>
* elfcode.h (elf_slurp_reloc_table_from_section): Don't canonicalize
ELF section symbols.
2004-12-09 Ian Lance Taylor <ian@wasabisystems.com> 2004-12-09 Ian Lance Taylor <ian@wasabisystems.com>
* elfxx-mips.c (mips_elf_calculate_relocation): For R_MIPS_JALR, * elfxx-mips.c (mips_elf_calculate_relocation): For R_MIPS_JALR,

View File

@ -1293,11 +1293,7 @@ elf_slurp_reloc_table_from_section (bfd *abfd,
ps = symbols + ELF_R_SYM (rela.r_info) - 1; ps = symbols + ELF_R_SYM (rela.r_info) - 1;
s = *ps; s = *ps;
/* Canonicalize ELF section symbols. FIXME: Why? */
if ((s->flags & BSF_SECTION_SYM) == 0)
relent->sym_ptr_ptr = ps; relent->sym_ptr_ptr = ps;
else
relent->sym_ptr_ptr = s->section->symbol_ptr_ptr;
} }
relent->addend = rela.r_addend; relent->addend = rela.r_addend;