From: Ramana Radhakrishnan Date: Tue, 17 Nov 2009 10:43:09 +0000 (+0000) Subject: 2009-11-17 Edward Nevill X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0bb027fd62c2b317e0003ab6f49fde486c4cd1ee;p=binutils-gdb.git 2009-11-17 Edward Nevill * arm-dis.c (print_insn_thumb32): Handle undefined instruction. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 86697d56315..7f3dee9b7f5 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 0d99c6c8ee0..ba19f7c1567 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 ();