From: Richard Henderson Date: Tue, 19 Mar 2013 16:40:53 +0000 (-0700) Subject: target-i386: Fix flags computation for ADOX X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c53de1a2896ccc9ab18bb9c2f1a2f7b93629b564;p=qemu.git target-i386: Fix flags computation for ADOX When starting from CC_OP_DYNAMIC, and issuing adox before adcx, a typo used the wrong value for the resulting CC_OP. Cc: Blue Swirl Reported-by: Torbjorn Granlund Signed-off-by: Richard Henderson Signed-off-by: Blue Swirl --- diff --git a/target-i386/translate.c b/target-i386/translate.c index c9cc2ffff5..7239696be6 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -4200,7 +4200,7 @@ static void gen_sse(CPUX86State *env, DisasContext *s, int b, carry_in = carry_out; break; default: - end_op = (b == 0x1f6 ? CC_OP_ADCX : CC_OP_ADCOX); + end_op = (b == 0x1f6 ? CC_OP_ADCX : CC_OP_ADOX); break; } /* If we can't reuse carry-out, get it out of EFLAGS. */