From: Mark Cave-Ayland <[email protected]> Instead of directly implementing the writeback using gen_op_st_v(), use the existing gen_writeback() function.
Suggested-by: Paolo Bonzini <[email protected]> Signed-off-by: Mark Cave-Ayland <[email protected]> Message-ID: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]> --- target/i386/tcg/emit.c.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/i386/tcg/emit.c.inc b/target/i386/tcg/emit.c.inc index ca78504b6e4..6123235c000 100644 --- a/target/i386/tcg/emit.c.inc +++ b/target/i386/tcg/emit.c.inc @@ -2580,9 +2580,9 @@ static void gen_POP(DisasContext *s, CPUX86State *env, X86DecodedInsn *decode) if (op->has_ea) { /* NOTE: order is important for MMU exceptions */ - gen_op_st_v(s, ot, s->T0, s->A0); - op->unit = X86_OP_SKIP; + gen_writeback(s, decode, 0, s->T0); } + /* NOTE: writing back registers after update is important for pop %sp */ gen_pop_update(s, ot); } -- 2.45.1
