diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-08-01 07:13:21 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2013-08-01 07:13:21 +0000 |
commit | 6d075bce124174c8809ec27a602382bcd4bf40e8 (patch) | |
tree | 730a168d76e10fe4bba06a0d3f9dbbe9142adf0f /opcodes/mips-dis.c | |
parent | 645eab03a932e03adc9b34feba086835a38ea471 (diff) | |
download | gdb-6d075bce124174c8809ec27a602382bcd4bf40e8.zip gdb-6d075bce124174c8809ec27a602382bcd4bf40e8.tar.gz gdb-6d075bce124174c8809ec27a602382bcd4bf40e8.tar.bz2 |
opcodes/
* mips-dis.c (print_mips16_insn_arg): Include ISA bit in base address.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 03333bf..b7aa551 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; } } |