2002-01-17 Eric Christopher <echristo@redhat.com>

* elf32-mips.c (mips_elf_calculate_relocation): Fix typo.
This commit is contained in:
Eric Christopher 2002-01-17 20:06:48 +00:00
parent b1ffc25745
commit 55baa95bb2
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-01-17 Eric Christopher <echristo@redhat.com>
* elf32-mips.c (mips_elf_calculate_relocation): Fix typo.
2002-01-17 Nick Clifton <nickc@cambridge.redhat.com>
* po/bfd.pot: Regenerate.

View File

@ -6734,8 +6734,8 @@ mips_elf_calculate_relocation (abfd,
/* Calls from 16-bit code to 32-bit code and vice versa require the
special jalx instruction. */
*require_jalxp = (!info->relocateable
&& (((r_type == R_MIPS16_26) != target_is_16_bit_code_p
|| ((r_type == R_MIPS_26) == target_is_16_bit_code_p))));
&& (((r_type == R_MIPS16_26) && !target_is_16_bit_code_p)
|| ((r_type == R_MIPS_26) && target_is_16_bit_code_p)));
local_p = mips_elf_local_relocation_p (input_bfd, relocation,
local_sections, true);