summaryrefslogtreecommitdiff
path: root/opcodes/mcore-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1999-05-07 09:14:56 +0000
committerNick Clifton <nickc@redhat.com>1999-05-07 09:14:56 +0000
commit1f60f094c0afee2c6bef1aaf84be84e6f5683329 (patch)
treeaaba06c4c42b48e8c3ebe34c88af662bd4dbcf64 /opcodes/mcore-dis.c
parent3865c3926b137d08c409031e488cb3772548876c (diff)
downloadbinutils-redhat-1f60f094c0afee2c6bef1aaf84be84e6f5683329.tar.gz
Use .short to display unidentified instructions
Diffstat (limited to 'opcodes/mcore-dis.c')
-rw-r--r--opcodes/mcore-dis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/mcore-dis.c b/opcodes/mcore-dis.c
index 7e3d45056b..36612a2e6f 100644
--- a/opcodes/mcore-dis.c
+++ b/opcodes/mcore-dis.c
@@ -126,7 +126,7 @@ print_insn_mcore (memaddr, info)
break;
if (op->name == 0)
- fprintf (stream, ".word 0x%04x", inst);
+ fprintf (stream, ".short 0x%04x", inst);
else
{
const char * name = grname[inst & 0x0F];