mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
x86: avoid AREG0 for SMM helpers
Add an explicit CPUX86State parameter instead of relying on AREG0. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
052e80d5e0
commit
608badfc66
4 changed files with 6 additions and 13 deletions
|
@ -7721,7 +7721,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start)
|
|||
goto illegal_op;
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(s->pc - s->cs_base);
|
||||
gen_helper_rsm();
|
||||
gen_helper_rsm(cpu_env);
|
||||
gen_eob(s);
|
||||
break;
|
||||
case 0x1b8: /* SSE4.2 popcnt */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue