- fix mul using wrong instruction

This commit is contained in:
Magnus Norddahl 2018-08-29 01:07:36 +02:00 committed by drfrag
parent c46a4d4483
commit 708362b31f

View file

@ -1214,12 +1214,12 @@ private:
void EmitMUL_RR()
{
BINARY_OP_INT(mul, regD[a], regD[B], regD[C]);
BINARY_OP_INT(imul, regD[a], regD[B], regD[C]);
}
void EmitMUL_RK()
{
BINARY_OP_INT(mul, regD[a], regD[B], konstd[C]);
BINARY_OP_INT(imul, regD[a], regD[B], konstd[C]);
}
void EmitDIV_RR()