Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd committed Nov 1, 2024
1 parent a5e1ccb commit 9ae3bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ZydisInfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ static void PrintInstruction(const ZydisDecoder* decoder,

if ((instruction->encoding == ZYDIS_INSTRUCTION_ENCODING_REX2) ||
((instruction->encoding == ZYDIS_INSTRUCTION_ENCODING_EVEX) &&
(instruction->attributes & ZYDIS_ATTRIB_HAS_EEVEX)))
((instruction->attributes & ZYDIS_ATTRIB_HAS_EEVEX) || instruction->apx.uses_egpr)))
{
ZYAN_PUTS("");
PrintAPXInfo(instruction);
Expand Down

0 comments on commit 9ae3bfa

Please sign in to comment.