From: Alexandre Oliva Date: Sat, 5 Oct 2002 11:18:13 +0000 (+0000) Subject: * elfxx-mips.c (mips_elf_create_dynamic_relocation): Set the type X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c4ca42da5b2bcffb7fe4279403159ccf7640f8b;p=binutils-gdb.git * elfxx-mips.c (mips_elf_create_dynamic_relocation): Set the type of the other two relocations packed with a REL32 to NONE. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f2c7a389e31..7f0d4383bf2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2002-10-05 Alexandre Oliva + + * elfxx-mips.c (mips_elf_create_dynamic_relocation): Set the type + of the other two relocations packed with a REL32 to NONE. + 2002-10-02 Stephen Clarke * elf32-sh.c (elf_sh_link_hash_entry): Add gotplt_refcount. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 3c8bb5d8be8..359587dfd94 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -2938,6 +2938,10 @@ mips_elf_create_dynamic_relocation (output_bfd, info, rel, h, sec, know where the shared library will wind up at load-time. */ outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx, R_MIPS_REL32); + outrel[1].r_info = ELF_R_INFO (output_bfd, (unsigned long) 0, + R_MIPS_NONE); + outrel[2].r_info = ELF_R_INFO (output_bfd, (unsigned long) 0, + R_MIPS_NONE); /* Adjust the output offset of the relocation to reference the correct location in the output file. */