mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
Only look for two parallel instructions when we are at a 32 bit boundary
This commit is contained in:
@ -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>
|
Wed Jan 14 17:37:03 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* m32r-asm.in: Generated file imported from cgen.
|
* m32r-asm.in: Generated file imported from cgen.
|
||||||
|
@ -259,6 +259,7 @@ print_insn (pc, info, buf, buflen)
|
|||||||
/* Special case - a 32 bit instruction which is actually two 16 bit instructions
|
/* Special case - a 32 bit instruction which is actually two 16 bit instructions
|
||||||
being executed in parallel. */
|
being executed in parallel. */
|
||||||
if (buflen == 32
|
if (buflen == 32
|
||||||
|
&& (pc & 0x3) == 0
|
||||||
&& ((insn_value & 0x80008000) == 0x00008000))
|
&& ((insn_value & 0x80008000) == 0x00008000))
|
||||||
{
|
{
|
||||||
if (info->endian == BFD_ENDIAN_BIG)
|
if (info->endian == BFD_ENDIAN_BIG)
|
||||||
|
Reference in New Issue
Block a user