2009-11-17 Edward Nevill <edward.nevill@arm.com>
* arm-dis.c (print_insn_thumb32): Handle undefined instruction.
This commit is contained in:
parent
27b4051da3
commit
0bb027fd62
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue