From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSZov-00089X-QA for qemu-devel@nongnu.org; Wed, 06 Jan 2010 12:37:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSZop-0007zV-Sa for qemu-devel@nongnu.org; Wed, 06 Jan 2010 12:37:20 -0500 Received: from [199.232.76.173] (port=33698 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSZop-0007zH-Mw for qemu-devel@nongnu.org; Wed, 06 Jan 2010 12:37:15 -0500 Received: from mail-pw0-f43.google.com ([209.85.160.43]:52252) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NSZon-0006L5-Le for qemu-devel@nongnu.org; Wed, 06 Jan 2010 12:37:14 -0500 Received: by pwj11 with SMTP id 11so12352672pwj.2 for ; Wed, 06 Jan 2010 09:37:12 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20100105231933.6526.79032.stgit@skyserv> References: <20100105231558.6526.44483.stgit@skyserv> <20100105231933.6526.79032.stgit@skyserv> From: Blue Swirl Date: Wed, 6 Jan 2010 17:36:52 +0000 Message-ID: Subject: Re: [Qemu-devel] [PATCH 6/9] sparc64: clear exception_index with -1 value Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Igor V. Kovalenko" Cc: qemu-devel@nongnu.org Thanks, applied. On Tue, Jan 5, 2010 at 11:19 PM, Igor V. Kovalenko wrote: > From: Igor V. Kovalenko > > Signed-off-by: Igor V. Kovalenko > --- > =C2=A0target-sparc/op_helper.c | =C2=A0 =C2=A02 +- > =C2=A01 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c > index b1978cb..94f1c7a 100644 > --- a/target-sparc/op_helper.c > +++ b/target-sparc/op_helper.c > @@ -3535,7 +3535,7 @@ void do_interrupt(CPUState *env) > =C2=A0 =C2=A0 env->tbr |=3D ((env->tl > 1) ? 1 << 14 : 0) | (intno << 5); > =C2=A0 =C2=A0 env->pc =3D env->tbr; > =C2=A0 =C2=A0 env->npc =3D env->pc + 4; > - =C2=A0 =C2=A0env->exception_index =3D 0; > + =C2=A0 =C2=A0env->exception_index =3D -1; > =C2=A0} > =C2=A0#else > =C2=A0#ifdef DEBUG_PCALL > > > >