From: Ramana Radhakrishnan Date: Tue, 17 Nov 2009 10:43:09 +0000 (+0000) Subject: 2009-11-17 Edward Nevill X-Git-Tag: cgen-snapshot-20091201~136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bb027fd62c2b317e0003ab6f49fde486c4cd1ee;p=external%2Fbinutils.git 2009-11-17 Edward Nevill * arm-dis.c (print_insn_thumb32): Handle undefined instruction. --- 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 ();