.short directives so that they can be reassembled.
+2010-05-27 jason Duerstock <jason.duerstock+binutils@gmail.com>
+
+ * m68k-dis.c (print_insn_m68k): Emit undefined instructions as
+ .short directives so that they can be reassembled.
+
2010-05-26 Catherine Moore <clm@codesourcery.com>
David Ung <davidu@mips.com>
if (val == 0)
/* Handle undefined instructions. */
- info->fprintf_func (info->stream, "0%o", (buffer[0] << 8) + buffer[1]);
+ info->fprintf_func (info->stream, ".short 0x%04x", (buffer[0] << 8) + buffer[1]);
return val ? val : 2;
}