summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@nildram.co.uk>2013-08-01 07:13:21 +0000
committerRichard Sandiford <rsandifo@nildram.co.uk>2013-08-01 07:13:21 +0000
commit82c946d5e0596ee14164cb1efb211b14da3c3377 (patch)
treeb83bdb4677e5dbd4505a387f0ce9d379a428f0b6 /opcodes
parent483fb988714ed60b10023bb1ab6a6c0baa774ae6 (diff)
downloadbinutils-redhat-82c946d5e0596ee14164cb1efb211b14da3c3377.tar.gz
opcodes/
* mips-dis.c (print_mips16_insn_arg): Include ISA bit in base address.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/mips-dis.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index e36ce7ed26..35e96332ea 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2013-08-01 Richard Sandiford <rdsandiford@googlemail.com>
+
+ * mips-dis.c (print_mips16_insn_arg): Include ISA bit in base address.
+
2013-07-29 Peter Bergner <bergner@vnet.ibm.com>
* 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 03333bfd95..b7aa5513e6 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;
}
}