From: Richard Sandiford Date: Thu, 1 Aug 2013 07:13:21 +0000 (+0000) Subject: opcodes/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d075bce124174c8809ec27a602382bcd4bf40e8;p=binutils-gdb.git opcodes/ * mips-dis.c (print_mips16_insn_arg): Include ISA bit in base address. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e36ce7ed263..35e96332eae 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2013-08-01 Richard Sandiford + + * mips-dis.c (print_mips16_insn_arg): Include ISA bit in base address. + 2013-07-29 Peter Bergner * ppc-dis.c (powerpc_init_dialect): Use ppc_parse_cpu() to set dialect. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 03333bfd954..b7aa5513e64 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -1565,7 +1565,7 @@ print_mips16_insn_arg (struct disassemble_info *info, } } - print_insn_arg (info, state, opcode, operand, baseaddr, uval); + print_insn_arg (info, state, opcode, operand, baseaddr + 1, uval); break; } }