Only look for two parallel instructions when we are at a 32 bit boundary

This commit is contained in:
Nick Clifton
1998-01-15 18:35:08 +00:00
parent d061232e20
commit 0d0bb9140b
2 changed files with 6 additions and 0 deletions

View 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)