From: Paolo Bonzini Date: Fri, 15 Jan 2010 08:41:01 +0000 (+0100) Subject: avoid unreachable statement after break X-Git-Tag: v0.13.0-rc0~1657 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=301d2908b99cc7391e8c7683a3df5dc75f7b62e6;p=qemu.git avoid unreachable statement after break Signed-off-by: Paolo Bonzini Signed-off-by: Anthony Liguori --- diff --git a/cpu-exec.c b/cpu-exec.c index 13b8daa91..0256edf1f 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -313,9 +313,9 @@ int cpu_exec(CPUState *env1) #elif defined(TARGET_M68K) do_interrupt(0); #endif + env->exception_index = -1; #endif } - env->exception_index = -1; } if (kvm_enabled()) {