aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Keys <skeys@ipdatasys.com>2012-11-07 20:36:33 +0000
committerSean Keys <skeys@ipdatasys.com>2012-11-07 20:36:33 +0000
commit5e483f6d3bc4876aa07a3ae22e93030b4aa16438 (patch)
tree6683b4ad4579dc22f03dac87f1e7303fa4e9c956
parenta93e28d5cdb19affcfab3f191c7ef06eb5929c9a (diff)
downloadbinutils-5e483f6d3bc4876aa07a3ae22e93030b4aa16438.tar.gz
2012-11-07 James Murray <jsm@jsm-net.demon.co.uk>
* config/tc-m68hc11.c: Fix R_M68HC12_16B relocation for movb/w
-rw-r--r--gas/config/tc-m68hc11.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c
index 46e6a941f..3189121c4 100644
--- a/gas/config/tc-m68hc11.c
+++ b/gas/config/tc-m68hc11.c
@@ -2219,9 +2219,9 @@ build_indexed_byte (operand *op, int format ATTRIBUTE_UNUSED, int move_insn)
byte <<= 3;
byte |= 0xe2;
number_to_chars_bigendian (f, byte, 1);
+ f = frag_more (2);
fix_new (frag_now, f - frag_now->fr_literal, 2,
sym, off, 0, BFD_RELOC_M68HC12_16B);
- f = frag_more (2);
return 1;
}
else
@@ -4459,8 +4459,8 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
if (value < 0)
value += 65536;
- where[1] = (value >> 8);
- where[2] = (value & 0xff);
+ where[0] = (value >> 8);
+ where[1] = (value & 0xff);
break;
case BFD_RELOC_M68HC11_RL_JUMP: