Re: [Qemu-devel] [PATCH 2/5] target-m68k: Do not cpu_abort on undefined insns

2016-11-06 Thread Laurent Vivier
Le 06/11/2016 à 07:18, Richard Henderson a écrit : > Report this properly via exception and, importantly, allow > the disassembler the chance to tell us what insn is not handled. > > Signed-off-by: Richard Henderson Reviewed-by: Laurent Vivier

[Qemu-devel] [PATCH 2/5] target-m68k: Do not cpu_abort on undefined insns

2016-11-05 Thread Richard Henderson
Report this properly via exception and, importantly, allow the disassembler the chance to tell us what insn is not handled. Signed-off-by: Richard Henderson --- target-m68k/translate.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/target-m68k/translate.c b/target-m6