diff options
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index a179057..ec0b54b 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -2954,7 +2954,9 @@ mips_elf_create_dynamic_relocation (output_bfd, info, rel, h, sec, 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); + ABI_64_P (output_bfd) + ? R_MIPS_64 + : R_MIPS_NONE); outrel[2].r_info = ELF_R_INFO (output_bfd, (unsigned long) 0, R_MIPS_NONE); |