mirror of https://github.com/x64dbg/zydis
Fixed operand-action for EVEX/MVEX instructions with write-mask (again)
This commit is contained in:
parent
a1551af657
commit
920d62d699
|
@ -1921,6 +1921,7 @@ FinalizeOperand:
|
|||
// Fix operand-action for EVEX instructions with merge-mask
|
||||
if ((info->encoding == ZYDIS_INSTRUCTION_ENCODING_EVEX) &&
|
||||
(info->avx.maskMode == ZYDIS_MASK_MODE_MERGE) &&
|
||||
(info->operandCount >= 3) &&
|
||||
(info->operands[1].type == ZYDIS_OPERAND_TYPE_REGISTER) &&
|
||||
(info->operands[1].reg >= ZYDIS_REGISTER_K1) &&
|
||||
(info->operands[1].reg <= ZYDIS_REGISTER_K7))
|
||||
|
|
Loading…
Reference in New Issue