From ee0dc6d3937e10d9813ede4710bdcb9a4687d96f Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 14 Feb 2010 07:23:50 +0000 Subject: Fix incorrect exception_index use env->exception_index should be cleared with -1, not 0. See also 821b19fe923ac49a24cdb4af902584fdd019cee6. Spotted by Igor Kovalenko. Signed-off-by: Blue Swirl --- target-alpha/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-alpha') diff --git a/target-alpha/helper.c b/target-alpha/helper.c index be7d37b..1e0bc4a 100644 --- a/target-alpha/helper.c +++ b/target-alpha/helper.c @@ -467,7 +467,7 @@ void do_interrupt (CPUState *env) env->ipr[IPR_EXC_ADDR] = env->pc | 1; excp = env->exception_index; - env->exception_index = 0; + env->exception_index = -1; env->error_code = 0; /* XXX: disable interrupts and memory mapping */ if (env->ipr[IPR_PAL_BASE] != -1ULL) { -- cgit v1.1