mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
2009-11-17 Edward Nevill <edward.nevill@arm.com>
* arm-dis.c (print_insn_thumb32): Handle undefined instruction.
This commit is contained in:
@ -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>
|
2009-11-14 Doug Evans <dje@sebabeach.org>
|
||||||
|
|
||||||
* Makefile.am (stamp-xc16x): Use ../cpu/xc16x.cpu instead of
|
* Makefile.am (stamp-xc16x): Use ../cpu/xc16x.cpu instead of
|
||||||
|
@ -3933,6 +3933,10 @@ print_insn_thumb32 (bfd_vma pc, struct disassemble_info *info, long given)
|
|||||||
c += 1 << width;
|
c += 1 << width;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'x':
|
||||||
|
func (stream, "0x%lx", val & 0xffffffffUL);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user