diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2012-05-19 19:13:56 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2012-05-19 19:13:56 +0000 |
commit | b0189df0335494087465543e963d58eb30307569 (patch) | |
tree | 4080a35465430f58efb17c8861fe71a163d08535 /bfd/elf64-mips.c | |
parent | PR 14072 (diff) | |
download | binutils-gdb-b0189df0335494087465543e963d58eb30307569.tar.gz binutils-gdb-b0189df0335494087465543e963d58eb30307569.tar.bz2 binutils-gdb-b0189df0335494087465543e963d58eb30307569.zip |
* elf64-mips.c (mips_elf64_be_swap_reloc_out): Also make sure
the third reloc offset is the same as the first.
Diffstat (limited to 'bfd/elf64-mips.c')
-rw-r--r-- | bfd/elf64-mips.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c index a835f66e62d..054b262dc4e 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); |