mirror of https://github.com/xemu-project/xemu.git
Fix crash in set registers in PPC gdb-stub, by Jason Wessel.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3079 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4cae1d1639
commit
c19dbb9426
|
@ -1493,10 +1493,12 @@ void do_store_msr (CPUPPCState *env, target_ulong value)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (enter_pm) {
|
if (enter_pm) {
|
||||||
/* power save: exit cpu loop */
|
if (likely(!env->halted)) {
|
||||||
env->halted = 1;
|
/* power save: exit cpu loop */
|
||||||
env->exception_index = EXCP_HLT;
|
env->halted = 1;
|
||||||
cpu_loop_exit();
|
env->exception_index = EXCP_HLT;
|
||||||
|
cpu_loop_exit();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue