mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 18:06:03 +08:00
Use .short to display unidentified instructions
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-05-07 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* mcore-dis.c (print_insn_mcore): Use .short to display
|
||||||
|
unidentified instructions, not .word.
|
||||||
|
|
||||||
1999-04-26 Tom Tromey <tromey@cygnus.com>
|
1999-04-26 Tom Tromey <tromey@cygnus.com>
|
||||||
|
|
||||||
* aclocal.m4, configure: Updated for new version of libtool.
|
* aclocal.m4, configure: Updated for new version of libtool.
|
||||||
|
@ -126,7 +126,7 @@ print_insn_mcore (memaddr, info)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
if (op->name == 0)
|
if (op->name == 0)
|
||||||
fprintf (stream, ".word 0x%04x", inst);
|
fprintf (stream, ".short 0x%04x", inst);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
const char * name = grname[inst & 0x0F];
|
const char * name = grname[inst & 0x0F];
|
||||||
|
Reference in New Issue
Block a user