fix incorrect parameter to maybeRex call in sseMoveRR

This commit is contained in:
Joel Dice 2009-12-03 17:57:28 -07:00
parent 60333c88f5
commit 0e4fabffb7

View File

@ -981,7 +981,7 @@ sseMoveRR(Context* c, unsigned aSize, Assembler::Register* a,
modrm(c, 0xc0, a, b);
} else {
opcode(c, 0xf2);
maybeRex(c, 8, a, b);
maybeRex(c, 4, a, b);
opcode(c, 0x0f, 0x10);
modrm(c, 0xc0, a, b);
}