From fa9ee72b809ca1d54a80ac90043b315b33bb6a8a Mon Sep 17 00:00:00 2001 From: Dmitry Diky Date: Fri, 12 Aug 2005 11:45:26 +0000 Subject: [PATCH] 2005-08-12 Dmitry Diky * elf32-msp430.c (msp430_elf_relax_delete_bytes): Adjust relocations referenced by .section + DISPLACEMENT. --- bfd/ChangeLog | 5 +++++ bfd/elf32-msp430.c | 18 +++++++++++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a7a7608..aa15d4c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-08-12 Dmitry Diky + + * elf32-msp430.c (msp430_elf_relax_delete_bytes): Adjust relocations + referenced by .section + DISPLACEMENT. + 2005-08-10 James E. Wilson * dwarf2.c (scan_unit_for_symbols, case DT_AT_location): Verify that diff --git a/bfd/elf32-msp430.c b/bfd/elf32-msp430.c index da42782..3aec7aa 100644 --- a/bfd/elf32-msp430.c +++ b/bfd/elf32-msp430.c @@ -868,10 +868,22 @@ msp430_elf_relax_delete_bytes (bfd * abfd, asection * sec, bfd_vma addr, sec->size -= count; /* Adjust all the relocs. */ + symtab_hdr = & elf_tdata (abfd)->symtab_hdr; + isym = (Elf_Internal_Sym *) symtab_hdr->contents; for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++) - /* Get the new reloc address. */ - if ((irel->r_offset > addr && irel->r_offset < toaddr)) - irel->r_offset -= count; + { + int sidx = ELF32_R_SYM(irel->r_info); + Elf_Internal_Sym *lsym = isym + sidx; + + /* Get the new reloc address. */ + if ((irel->r_offset > addr && irel->r_offset < toaddr)) + irel->r_offset -= count; + + /* Adjust symbols referenced by .sec+0xXX */ + if (irel->r_addend > addr && irel->r_addend < toaddr + && lsym->st_shndx == sec_shndx) + irel->r_addend -= count; + } /* Adjust the local symbols defined in this section. */ symtab_hdr = & elf_tdata (abfd)->symtab_hdr; -- 2.7.4