summaryrefslogtreecommitdiffstats
path: root/opcodes/m32r-dis.c
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2004-02-13 03:21:49 +0000
committerBen Elliston <bje@au.ibm.com>2004-02-13 03:21:49 +0000
commit44d864817698b9cf4963a332a942510bc61f7976 (patch)
tree35055ffe19ab591a4b85e70aa916ac956f0abe51 /opcodes/m32r-dis.c
parent915213a4d58b9181d6dbdb21cb283e19ed8de096 (diff)
downloadppe42-binutils-44d864817698b9cf4963a332a942510bc61f7976.tar.gz
ppe42-binutils-44d864817698b9cf4963a332a942510bc61f7976.zip
* m32r-dis.c: Regenerate.
Diffstat (limited to 'opcodes/m32r-dis.c')
-rw-r--r--opcodes/m32r-dis.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/opcodes/m32r-dis.c b/opcodes/m32r-dis.c
index 6e5ea70ce9..4622462608 100644
--- a/opcodes/m32r-dis.c
+++ b/opcodes/m32r-dis.c
@@ -105,7 +105,8 @@ my_print_insn (cd, pc, info)
/* Read the base part of the insn. */
- status = (*info->read_memory_func) (pc, buf, buflen, info);
+ status = (*info->read_memory_func) (pc - ((!big_p && (pc & 3) != 0) ? 2 : 0),
+ buf, buflen, info);
if (status != 0)
{
(*info->memory_error_func) (status, pc, info);
@@ -118,13 +119,13 @@ my_print_insn (cd, pc, info)
return print_insn (cd, pc, info, buf, buflen);
/* Print the first insn. */
- buf += (big_p ? 0 : 2);
if ((pc & 3) == 0)
{
+ buf += (big_p ? 0 : 2);
if (print_insn (cd, pc, info, buf, 2) == 0)
(*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
+ buf += (big_p ? 2 : -2);
}
- buf += (big_p ? 2 : -2);
x = (big_p ? &buf[0] : &buf[1]);
if (*x & 0x80)
OpenPOWER on IntegriCloud