From 1f3e1896a2bc6fd0fc38bdce49baba1861b9e6de Mon Sep 17 00:00:00 2001 From: hjl Date: Sun, 10 Apr 2005 16:25:50 +0000 Subject: [PATCH] 2005-04-10 H.J. Lu * config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64. --- gas/ChangeLog | 4 ++++ gas/config/tc-mips.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index fdac073abf..2d6a557847 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 73eab2a885..d622d4bc29 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); } } -- 2.11.0