* config/tc-mn10300.c (md_convert_frag): Zero out top two bytes of
long call instruction's displacement.
+2010-09-08 Nick Clifton <nickc@redhat.com>
+
+ PR gas/11973
+ * config/tc-mn10300.c (md_convert_frag): Zero out top two bytes of
+ long call instruction's displacement.
+
2010-09-03 H.J. Lu <hongjiu.lu@intel.com>
PR gas/11974
fragP->fr_literal[offset] = 0xdd;
fragP->fr_literal[offset + 5] = fragP->fr_literal[offset + 3];
fragP->fr_literal[offset + 6] = fragP->fr_literal[offset + 4];
+ fragP->fr_literal[offset + 3] = 0;
+ fragP->fr_literal[offset + 4] = 0;
fix_new (fragP, fragP->fr_fix + 1, 4, fragP->fr_symbol,
fragP->fr_offset + 1, 1, BFD_RELOC_32_PCREL);