Skip to content

Commit

Permalink
Wire has_ppx flag
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd committed Nov 2, 2024
1 parent a13c171 commit 7c1a34b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -5242,8 +5242,9 @@ static ZyanStatus ZydisDecodeInstruction(ZydisDecoderState* state,
instruction->attributes |= ZYDIS_ATTRIB_HAS_EEVEX;
}

instruction->apx.has_nf = evex_definition->has_apx_nf;
instruction->apx.has_zu = evex_definition->has_apx_zu;
instruction->apx.has_nf = evex_definition->has_apx_nf;
instruction->apx.has_zu = evex_definition->has_apx_zu;
instruction->apx.has_ppx = evex_definition->has_apx_ppx;

if (instruction->apx.scc != ZYDIS_SCC_NONE)
{
Expand Down

0 comments on commit 7c1a34b

Please sign in to comment.