Only look for two parallel instructions when we are at a 32 bit boundary
authorNick Clifton <nickc@redhat.com>
Thu, 15 Jan 1998 18:35:08 +0000 (18:35 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 15 Jan 1998 18:35:08 +0000 (18:35 +0000)
opcodes/ChangeLog
opcodes/m32r-dis.c

index 9dc4941ce0c47c24f1ce6deccd5e37d84852c925..bc1c89e69f56991e78df592e7627f50566bddc7a 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jan 15 10:32:06 1998  Nick Clifton  <nickc@cygnus.com>
+
+       * m32r-dis.c (print_insn): Only look for parallel 16 bit
+       instructions on a 32 bit boundary.
+
 Wed Jan 14 17:37:03 1998  Nick Clifton  <nickc@cygnus.com>
 
        * m32r-asm.in: Generated file imported from cgen.
index d320d53acb7fff12db669a58b93a847a64c5d66a..05555b26e1dbfce401f8d97c44a96e38f919580d 100644 (file)
@@ -259,6 +259,7 @@ print_insn (pc, info, buf, buflen)
   /* Special case - a 32 bit instruction which is actually two 16 bit instructions
      being executed in parallel.  */
   if (buflen == 32
+      && (pc & 0x3) == 0
       && ((insn_value & 0x80008000) == 0x00008000))
     {
       if (info->endian == BFD_ENDIAN_BIG)
This page took 0.032303 seconds and 4 git commands to generate.