Remove dead code; it arose when I noticed that, because 0x3? opcodes do
have a pop, case 0x32 works just fine as fcomp (even though 0x?2 is fcom):
there is no need to hack the op to 0x03.
Reported by Coverity as CID
1643922.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
break;
}
break;
- /* map to fcomp; op & 7 == 2 would not pop */
- op = 0x03;
- /* fallthrough */
case 0x00 ... 0x07: /* fxxx st, sti */
case 0x22 ... 0x23: /* fcom2 and fcomp3, undocumented ops */
case 0x32: /* fcomp5, undocumented op */