diff options
author | Doug Kwan <dougkwan@google.com> | 2009-07-10 16:58:54 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-07-10 16:58:54 +0000 |
commit | d1aaab3c714b4faa538b200c378fa64d8c79c3d6 (patch) | |
tree | 0acb95af9abf3c5e002d7547c2a6fbbd948c0f79 /opcodes/arm-dis.c | |
parent | cedfb17907e5a4efe45f8a084ac727b44a8b724a (diff) | |
download | gdb-d1aaab3c714b4faa538b200c378fa64d8c79c3d6.zip gdb-d1aaab3c714b4faa538b200c378fa64d8c79c3d6.tar.gz gdb-d1aaab3c714b4faa538b200c378fa64d8c79c3d6.tar.bz2 |
2009-07-10 Doug Kwan <dougkwan@google.com>
* 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.
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index 13f9e1e..0dc0f62 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; } } |