From: bje Date: Fri, 13 Feb 2004 03:21:48 +0000 (+0000) Subject: * m32r-dis.c: Regenerate. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2f4b78b5843dda9d10703f9661644b4adbd45d06;p=pf3gnuchains%2Fpf3gnuchains3x.git * m32r-dis.c: Regenerate. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index c8a2ded745..683e7862e5 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2004-02-13 Ben Elliston + + * m32r-dis.c: Regenerate. + 2004-01-27 Michael Snyder * sh-opc.h (sh_table): "fsrra", not "fssra". 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)