From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NXMkA-0004Yt-6h for qemu-devel@nongnu.org; Tue, 19 Jan 2010 17:40:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NXMk5-0004Y4-B0 for qemu-devel@nongnu.org; Tue, 19 Jan 2010 17:40:13 -0500 Received: from [199.232.76.173] (port=43487 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXMk5-0004Y1-89 for qemu-devel@nongnu.org; Tue, 19 Jan 2010 17:40:09 -0500 Received: from mail-qy0-f197.google.com ([209.85.221.197]:40718) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NXMk5-0004s0-3M for qemu-devel@nongnu.org; Tue, 19 Jan 2010 17:40:09 -0500 Received: by mail-qy0-f197.google.com with SMTP id 35so1358126qyk.19 for ; Tue, 19 Jan 2010 14:40:08 -0800 (PST) Message-ID: <4B5634C6.6080107@codemonkey.ws> Date: Tue, 19 Jan 2010 16:40:06 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] avoid unreachable statement after break References: <1263544861-18416-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1263544861-18416-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org On 01/15/2010 02:41 AM, Paolo Bonzini wrote: > Signed-off-by: Paolo Bonzini > Applied. Thanks. Regards, Anthony Liguori > --- > cpu-exec.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/cpu-exec.c b/cpu-exec.c > index 44d45fc..d974141 100644 > --- a/cpu-exec.c > +++ b/cpu-exec.c > @@ -316,9 +316,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()) { >