1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

JMPs imply their size.

This commit is contained in:
Thomas Harte 2023-09-22 17:00:10 -04:00
parent 587ec81900
commit 5a5f71e703

View File

@ -151,6 +151,9 @@ bool InstructionSet::x86::mnemonic_implies_data_size(Operation operation) {
case Operation::MOVS:
case Operation::SCAS:
case Operation::STOS:
case Operation::JMPabs:
case Operation::JMPrel:
case Operation::JMPfar:
return true;
}
}