X86: Fix the constant detecting three byte opcodes in the predecoder.

--HG--
extra : rebase_source : b64c3d2348cb73177024695fb6e205d51bf1cda9
This commit is contained in:
Gabe Black 2011-11-20 05:10:05 -08:00
parent f171a29118
commit 49a2d54e1a

View file

@ -186,7 +186,7 @@ namespace X86ISA
DPRINTF(Predecoder, "Found two byte opcode.\n");
emi.opcode.prefixA = nextByte;
}
else if(emi.opcode.num == 2 && (nextByte == 0x38 || nextByte == 0x3F))
else if(emi.opcode.num == 2 && (nextByte == 0x38 || nextByte == 0x3A))
{
nextState = OpcodeState;
DPRINTF(Predecoder, "Found three byte opcode.\n");