target-i386: ROR r8/r16 imm instruction fix
Fix EFLAGS corruption by ROR r8/r16 imm instruction located at the end
of the TB, similarly to commit 089305ac
for the non-immediate case.
Reported-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
66e61b55f1
commit
38ebb396c9
@ -1871,6 +1871,7 @@ static void gen_rot_rm_im(DisasContext *s, int ot, int op1, int op2,
|
||||
if (is_right) {
|
||||
tcg_gen_shri_tl(cpu_cc_src2, cpu_T[0], mask - 1);
|
||||
tcg_gen_shri_tl(cpu_cc_dst, cpu_T[0], mask);
|
||||
tcg_gen_andi_tl(cpu_cc_dst, cpu_cc_dst, 1);
|
||||
} else {
|
||||
tcg_gen_shri_tl(cpu_cc_src2, cpu_T[0], mask);
|
||||
tcg_gen_andi_tl(cpu_cc_dst, cpu_T[0], 1);
|
||||
|
Loading…
Reference in New Issue
Block a user