diff options
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 73eab2a..d622d4b 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); } } |