mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
cpu: Move exception_index field from CPU_COMMON to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
6f03bef0ff
commit
27103424c4
60 changed files with 389 additions and 319 deletions
|
@ -95,7 +95,9 @@ uint32_t helper_get(uint32_t id, uint32_t ctrl)
|
|||
|
||||
void helper_raise_exception(CPUMBState *env, uint32_t index)
|
||||
{
|
||||
env->exception_index = index;
|
||||
CPUState *cs = CPU(mb_env_get_cpu(env));
|
||||
|
||||
cs->exception_index = index;
|
||||
cpu_loop_exit(env);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue