From b0189df0335494087465543e963d58eb30307569 Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Sat, 19 May 2012 19:13:56 +0000 Subject: [PATCH] * elf64-mips.c (mips_elf64_be_swap_reloc_out): Also make sure the third reloc offset is the same as the first. --- bfd/ChangeLog | 5 +++++ bfd/elf64-mips.c | 1 + 2 files changed, 6 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index aee1dbc..60e3fb9 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-05-19 Maciej W. Rozycki + + * elf64-mips.c (mips_elf64_be_swap_reloc_out): Also make sure + the third reloc offset is the same as the first. + 2012-05-19 Alan Modra * elf32-ppc.h (has_vle_insns, is_ppc_vle): Delete. diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c index a835f66..054b262 100644 --- a/bfd/elf64-mips.c +++ b/bfd/elf64-mips.c @@ -2708,6 +2708,7 @@ mips_elf64_be_swap_reloc_out (bfd *abfd, const Elf_Internal_Rela *src, mirel.r_offset = src[0].r_offset; BFD_ASSERT(src[0].r_offset == src[1].r_offset); + BFD_ASSERT(src[0].r_offset == src[2].r_offset); mirel.r_type = ELF64_MIPS_R_TYPE (src[0].r_info); mirel.r_sym = ELF64_R_SYM (src[0].r_info); -- 2.7.4