Fixed issue with recompiled FCOMPP where the incorrect number of registers could be popped.

This commit is contained in:
SarahW 2016-12-10 18:44:45 +00:00
commit 3a72cc9593
3 changed files with 57 additions and 2 deletions

View file

@ -481,8 +481,7 @@ static uint32_t ropFCOMPP(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uin
{
FP_ENTER();
FP_COMPARE_REG(0, 1);
FP_POP();
FP_POP();
FP_POP2();
return op_pc;
}