Skip to content

Commit

Permalink
Enable IPREFETCH mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mappzor authored and athre0z committed Dec 9, 2023
1 parent 5b31cd5 commit 04c6c1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -4907,7 +4907,8 @@ ZyanStatus ZydisDecoderInit(ZydisDecoder* decoder, ZydisMachineMode machine_mode
(1 << ZYDIS_DECODER_MODE_CET) |
(1 << ZYDIS_DECODER_MODE_LZCNT) |
(1 << ZYDIS_DECODER_MODE_TZCNT) |
(1 << ZYDIS_DECODER_MODE_CLDEMOTE);
(1 << ZYDIS_DECODER_MODE_CLDEMOTE) |
(1 << ZYDIS_DECODER_MODE_IPREFETCH);

if (!decoder)
{
Expand Down

0 comments on commit 04c6c1b

Please sign in to comment.