summaryrefslogtreecommitdiffstats
path: root/cpu
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2012-02-27 06:57:57 +0000
committerAlan Modra <amodra@gmail.com>2012-02-27 06:57:57 +0000
commita597d2d3d2bb862725ed50780cc308d652981aaf (patch)
treed4c3ba8c5837c59788c312d3b676b2e2ca3fd76a /cpu
parent3f26eb3af95d6f59c98b1df1de4342bfd6523bfa (diff)
downloadppe42-binutils-a597d2d3d2bb862725ed50780cc308d652981aaf.tar.gz
ppe42-binutils-a597d2d3d2bb862725ed50780cc308d652981aaf.zip
cpu/
* mt.opc (print_dollarhex): Trim values to 32 bits. opcodes/ * mt-dis.c: Regenerate.
Diffstat (limited to 'cpu')
-rw-r--r--cpu/ChangeLog4
-rw-r--r--cpu/mt.opc4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog
index 1f5418714d..bd82d13b5d 100644
--- a/cpu/ChangeLog
+++ b/cpu/ChangeLog
@@ -1,3 +1,7 @@
+2012-02-27 Alan Modra <amodra@gmail.com>
+
+ * mt.opc (print_dollarhex): Trim values to 32 bits.
+
2011-12-15 Nick Clifton <nickc@redhat.com>
* frv.opc (parse_uhi16): Fix handling of %hi operator on 64-bit
diff --git a/cpu/mt.opc b/cpu/mt.opc
index 3da6d0ea96..d988cc25e9 100644
--- a/cpu/mt.opc
+++ b/cpu/mt.opc
@@ -1,5 +1,5 @@
/* Morpho Technologies mRISC opcode support, for GNU Binutils. -*- C -*-
- Copyright 2001, 2007, 2008, 2009 Free Software Foundation, Inc.
+ Copyright 2001, 2007, 2008, 2009, 2012 Free Software Foundation, Inc.
Contributed by Red Hat Inc; developed under contract from
Morpho Technologies.
@@ -447,7 +447,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);
OpenPOWER on IntegriCloud