From: H.J. Lu Date: Sun, 10 Apr 2005 16:25:51 +0000 (+0000) Subject: 2005-04-10 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b215186bfd8da767d092414ca6f07cbf561b4640;p=binutils-gdb.git 2005-04-10 H.J. Lu * config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index fdac073abf5..2d6a557847b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-04-10 H.J. Lu + + * config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64. + 2005-04-09 Alan Modra * read.c (assign_symbol): Remove const from parm. Fix xcalloc diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 73eab2a8850..d622d4bc29d 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -10986,9 +10986,9 @@ md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) hiv = 0xffffffff; else hiv = 0; - md_number_to_chars ((char *)(buf + target_big_endian ? 4 : 0), + md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)), *valP, 4); - md_number_to_chars ((char *)(buf + target_big_endian ? 0 : 4), + md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)), hiv, 4); } }