mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
* elf64-alpha.c (elf64_alpha_relocate_section): Duplicate memory
value into R_ALPHA_RELATIVE's addend. (elf64_alpha_finish_dynamic_symbol): Likewise.
This commit is contained in:
parent
36ed2fff06
commit
28cfee261d
@ -1,3 +1,9 @@
|
||||
2001-08-31 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* elf64-alpha.c (elf64_alpha_relocate_section): Duplicate memory
|
||||
value into R_ALPHA_RELATIVE's addend.
|
||||
(elf64_alpha_finish_dynamic_symbol): Likewise.
|
||||
|
||||
2001-08-31 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
||||
* elf32-arm.h (elf32_arm_relocate_section): Do not rightshift
|
||||
|
@ -3613,7 +3613,7 @@ elf64_alpha_relocate_section (output_bfd, info, input_bfd, input_section,
|
||||
+ sgot->output_offset
|
||||
+ gotent->got_offset);
|
||||
outrel.r_info = ELF64_R_INFO(0, R_ALPHA_RELATIVE);
|
||||
outrel.r_addend = 0;
|
||||
outrel.r_addend = relocation+addend;
|
||||
|
||||
bfd_elf64_swap_reloca_out (output_bfd, &outrel,
|
||||
((Elf64_External_Rela *)
|
||||
@ -3678,7 +3678,7 @@ elf64_alpha_relocate_section (output_bfd, info, input_bfd, input_section,
|
||||
else if (info->shared && (input_section->flags & SEC_ALLOC))
|
||||
{
|
||||
outrel.r_info = ELF64_R_INFO(0, R_ALPHA_RELATIVE);
|
||||
outrel.r_addend = 0;
|
||||
outrel.r_addend = relocation + addend;
|
||||
}
|
||||
else
|
||||
goto default_reloc;
|
||||
@ -3871,7 +3871,7 @@ elf64_alpha_finish_dynamic_symbol (output_bfd, info, h, sym)
|
||||
+ sgot->output_offset
|
||||
+ gotent->got_offset);
|
||||
outrel.r_info = ELF64_R_INFO(0, R_ALPHA_RELATIVE);
|
||||
outrel.r_addend = 0;
|
||||
outrel.r_addend = plt_addr;
|
||||
|
||||
bfd_elf64_swap_reloca_out (output_bfd, &outrel,
|
||||
((Elf64_External_Rela *)
|
||||
|
Loading…
Reference in New Issue
Block a user