diff options
author | Alan Modra <amodra@gmail.com> | 2012-02-27 06:57:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-02-27 06:57:57 +0000 |
commit | a597d2d3d2bb862725ed50780cc308d652981aaf (patch) | |
tree | d4c3ba8c5837c59788c312d3b676b2e2ca3fd76a /opcodes/mt-dis.c | |
parent | 3f26eb3af95d6f59c98b1df1de4342bfd6523bfa (diff) | |
download | gdb-a597d2d3d2bb862725ed50780cc308d652981aaf.zip gdb-a597d2d3d2bb862725ed50780cc308d652981aaf.tar.gz gdb-a597d2d3d2bb862725ed50780cc308d652981aaf.tar.bz2 |
cpu/
* mt.opc (print_dollarhex): Trim values to 32 bits.
opcodes/
* mt-dis.c: Regenerate.
Diffstat (limited to 'opcodes/mt-dis.c')
-rw-r--r-- | opcodes/mt-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/mt-dis.c b/opcodes/mt-dis.c index 28f4655..3767be2 100644 --- a/opcodes/mt-dis.c +++ b/opcodes/mt-dis.c @@ -72,7 +72,7 @@ print_dollarhex (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, { disassemble_info *info = (disassemble_info *) dis_info; - info->fprintf_func (info->stream, "$%lx", value); + info->fprintf_func (info->stream, "$%lx", value & 0xffffffff); if (0) print_normal (cd, dis_info, value, attrs, pc, length); |