diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-31 16:23:25 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-31 16:23:25 +0000 |
commit | 5fb1c3f28281809a976539b4a6810cae766bbd68 (patch) | |
tree | 2dd21ab37c9fafa6af44b32d93694b483f70a48a /bfd/elf32-arm.h | |
parent | 374b596dd678cf40a7963c4b39439c529f76c9be (diff) | |
download | gdb-5fb1c3f28281809a976539b4a6810cae766bbd68.zip gdb-5fb1c3f28281809a976539b4a6810cae766bbd68.tar.gz gdb-5fb1c3f28281809a976539b4a6810cae766bbd68.tar.bz2 |
Do not rightshift recomputed addend during relocatable link if not USE_REL.
Diffstat (limited to 'bfd/elf32-arm.h')
-rw-r--r-- | bfd/elf32-arm.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bfd/elf32-arm.h b/bfd/elf32-arm.h index fcde30e..2b627ec 100644 --- a/bfd/elf32-arm.h +++ b/bfd/elf32-arm.h @@ -1810,7 +1810,7 @@ elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section, || r_type == R_ARM_GNU_VTINHERIT) continue; - elf32_arm_info_to_howto (input_bfd, & bfd_reloc, rel); + elf32_arm_info_to_howto (input_bfd, & bfd_reloc, (Elf32_Internal_Rel *) rel); howto = bfd_reloc.howto; if (info->relocateable) @@ -1829,8 +1829,7 @@ elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section, arm_add_to_rel (input_bfd, contents + rel->r_offset, howto, sec->output_offset + sym->st_value); #else - rel->r_addend += (sec->output_offset + sym->st_value) - >> howto->rightshift; + rel->r_addend += (sec->output_offset + sym->st_value); #endif } } |