2009-11-17 Edward Nevill <edward.nevill@arm.com>

* arm-dis.c (print_insn_thumb32): Handle undefined instruction.
This commit is contained in:
Ramana Radhakrishnan 2009-11-17 10:43:09 +00:00
parent 27b4051da3
commit 0bb027fd62
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-11-17 Edward Nevill <edward.nevill@arm.com>
* arm-dis.c (print_insn_thumb32): Handle undefined instruction.
2009-11-14 Doug Evans <dje@sebabeach.org>
* Makefile.am (stamp-xc16x): Use ../cpu/xc16x.cpu instead of

View File

@ -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 ();