Small fix

This commit is contained in:
Nekotekina 2015-02-19 14:18:28 +03:00
parent e84fc6426c
commit 2d1d996c50
5 changed files with 19 additions and 7 deletions

View file

@ -270,7 +270,7 @@ void decode_x64_reg_op(const u8* code, x64_op_t& out_op, x64_reg_t& out_reg, siz
{
case 0x7f:
{
if (repe && !oso) // MOVDQU xmm/m, xmm
if ((repe && !oso) || (!repe && oso)) // MOVDQU/MOVDQA xmm/m, xmm
{
out_op = X64OP_STORE;
out_reg = get_modRM_reg_xmm(code, rex);