fixed PPC state reloading

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@475 c046a42c-6fe2-441c-8c8c-71466251a162
master
bellard 2003-11-23 17:32:06 +00:00
parent 678673089d
commit 6dca2016fc
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}