2005-04-10 H.J. Lu <hongjiu.lu@intel.com>

* config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64.
This commit is contained in:
H.J. Lu 2005-04-10 16:25:51 +00:00
parent f65a6fe0b4
commit b215186bfd
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-04-10 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64.
2005-04-09 Alan Modra <amodra@bigpond.net.au>
* read.c (assign_symbol): Remove const from parm. Fix xcalloc

View File

@ -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);
}
}