From: bellard Date: Sun, 23 Nov 2003 17:32:06 +0000 (+0000) Subject: fixed PPC state reloading X-Git-Tag: release_0_5_1~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6dca2016fc0cca49ce866b7f2fcfffe011c1f496;p=thirdparty%2Fqemu.git fixed PPC state reloading git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@475 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/translate-all.c b/translate-all.c index ff9e037bb06..b02c87a2212 100644 --- a/translate-all.c +++ b/translate-all.c @@ -190,9 +190,9 @@ int cpu_restore_state(TranslationBlock *tb, #elif defined(TARGET_ARM) env->regs[15] = gen_opc_pc[j]; #elif defined(TARGET_SPARC) - env->pc = gen_opc_pc[j]; + env->pc = gen_opc_pc[j]; +#elif defined(TARGET_PPC) + env->nip = gen_opc_pc[j]; #endif return 0; } - -