diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-28 12:32:10 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-28 12:32:10 +0000 |
commit | 5608e05bb4ef95fdd0051137ed7db8d1a29ee5ea (patch) | |
tree | d6089c6d2650fb42778574ee3b407562028eab92 /bfd | |
parent | a5bcd848ff9f8a403f1f57644447ba136c0e29eb (diff) | |
download | gdb-5608e05bb4ef95fdd0051137ed7db8d1a29ee5ea.zip gdb-5608e05bb4ef95fdd0051137ed7db8d1a29ee5ea.tar.gz gdb-5608e05bb4ef95fdd0051137ed7db8d1a29ee5ea.tar.bz2 |
2001-02-28 Andreas Jaeger <aj@suse.de>
* elf64-x86-64.c (elf64_x86_64_relocate_section): Add relocation
to addend.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 9 | ||||
-rw-r--r-- | bfd/elf64-x86-64.c | 6 |
2 files changed, 10 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ce97448..60bffa0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,7 +1,12 @@ +2001-02-28 Andreas Jaeger <aj@suse.de> + + * elf64-x86-64.c (elf64_x86_64_relocate_section): Add relocation + to addend. + 2001-02-28 Philip Blundell <pb@futuretv.com> * elf32-arm.h: Update mentions of renamed EF_xx constants. - (elf32_arm_print_private_bfd_data): Handle ARM EABI version 2. + (elf32_arm_print_private_bfd_data): Handle ARM EABI version 2. 2001-02-27 H.J. Lu <hjl@gnu.org> @@ -25,7 +30,7 @@ 2001-02-26 Timothy Wall <twall@cygnus.com> * elfxx-ia64.c (elfNN_ia64_aix_add_symbol_hook): Remove obsolete - comments. + comments. 2001-02-26 Nick Clifton <nickc@redhat.com> diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 88549b9..aedd2b8 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -1495,7 +1495,7 @@ elf64_x86_64_relocate_section (output_bfd, info, input_bfd, input_section, BFD_ASSERT (h != NULL && h->dynindx != -1); relocate = false; outrel.r_info = ELF64_R_INFO (h->dynindx, r_type); - outrel.r_addend = rela->r_addend; + outrel.r_addend = relocation + rela->r_addend; } else { @@ -1508,14 +1508,14 @@ elf64_x86_64_relocate_section (output_bfd, info, input_bfd, input_section, { relocate = true; outrel.r_info = ELF64_R_INFO (0, R_X86_64_RELATIVE); - outrel.r_addend = rela->r_addend; + outrel.r_addend = relocation + rela->r_addend; } else { BFD_ASSERT (h->dynindx != -1); relocate = false; outrel.r_info = ELF64_R_INFO (h->dynindx, R_X86_64_32); - outrel.r_addend = rela->r_addend; + outrel.r_addend = relocation + rela->r_addend; } } |