From d1aaab3c714b4faa538b200c378fa64d8c79c3d6 Mon Sep 17 00:00:00 2001 From: Doug Kwan Date: Fri, 10 Jul 2009 16:58:54 +0000 Subject: [PATCH] 2009-07-10 Doug Kwan * arm-disc.c (print_insn_coprocessor, print_insn_arm): Print only lower 32 bits of long types to make hexadecimal output consistent on both 32-bit and 64-bit hosts. --- opcodes/ChangeLog | 6 ++++++ opcodes/arm-dis.c | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index c0d8bfaf67..25e4e8d467 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,9 @@ +2009-07-10 Doug Kwan + + * arm-disc.c (print_insn_coprocessor, print_insn_arm): Print only + lower 32 bits of long types to make hexadecimal output consistent + on both 32-bit and 64-bit hosts. + 2009-07-10 Alan Modra * fr30-desc.c, * fr30-desc.h, * fr30-opc.c, * fr30-opc.h, diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index 13f9e1e3d5..0dc0f62ab9 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -1955,7 +1955,7 @@ print_insn_coprocessor (bfd_vma pc, break; case 'x': - func (stream, "0x%lx", value); + func (stream, "0x%lx", (value & 0xffffffffUL)); break; case '`': @@ -2167,7 +2167,7 @@ print_insn_coprocessor (bfd_vma pc, } if (value_in_comment > 32 || value_in_comment < -16) - func (stream, "\t; 0x%lx", value_in_comment); + func (stream, "\t; 0x%lx", (value_in_comment & 0xffffffffUL)); return TRUE; } @@ -3107,7 +3107,7 @@ print_insn_arm (bfd_vma pc, struct disassemble_info *info, long given) } if (value_in_comment > 32 || value_in_comment < -16) - func (stream, "\t; 0x%lx", value_in_comment); + func (stream, "\t; 0x%lx", (value_in_comment & 0xffffffffUL)); return; } }