From 004bc62c288c707dcd31189149b01c8624c49ee3 Mon Sep 17 00:00:00 2001 From: bellard Date: Sat, 21 Feb 2004 14:10:04 +0000 Subject: [PATCH] update nip when processing exceptions (Jocelyn Mayer) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@627 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-ppc/op.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-ppc/op.c b/target-ppc/op.c index 98d788585b..7916b83c50 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -220,8 +220,8 @@ PPC_OP(queue_exception) PPC_OP(process_exceptions) { + env->nip = PARAM(1); if (env->exceptions != 0) { - env->nip = PARAM(1); do_check_exception_state(); } } -- GitLab