Use .short to display unidentified instructions
authorNick Clifton <nickc@redhat.com>
Fri, 7 May 1999 09:14:56 +0000 (09:14 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 7 May 1999 09:14:56 +0000 (09:14 +0000)
opcodes/ChangeLog
opcodes/mcore-dis.c

index 1114d48..36b0679 100644 (file)
@@ -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>
 
        * aclocal.m4, configure: Updated for new version of libtool.
index 7e3d450..36612a2 100644 (file)
@@ -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];