From 0bb027fd62c2b317e0003ab6f49fde486c4cd1ee Mon Sep 17 00:00:00 2001 From: Ramana Radhakrishnan Date: Tue, 17 Nov 2009 10:43:09 +0000 Subject: [PATCH] 2009-11-17 Edward Nevill * arm-dis.c (print_insn_thumb32): Handle undefined instruction. --- opcodes/ChangeLog | 4 ++++ opcodes/arm-dis.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 86697d5..7f3dee9 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2009-11-17 Edward Nevill + + * arm-dis.c (print_insn_thumb32): Handle undefined instruction. + 2009-11-14 Doug Evans * Makefile.am (stamp-xc16x): Use ../cpu/xc16x.cpu instead of diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index 0d99c6c..ba19f7c 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -3932,6 +3932,10 @@ print_insn_thumb32 (bfd_vma pc, struct disassemble_info *info, long given) func (stream, "%c", c[(1 << width) - (int) val]); c += 1 << width; break; + + case 'x': + func (stream, "0x%lx", val & 0xffffffffUL); + break; default: abort (); -- 2.7.4