From 5368f789f64f7d2d50fd69e24ebeb295c7a3f9e3 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 26 Sep 2023 17:30:27 -0400 Subject: [PATCH] Shuffle list slightly. --- InstructionSets/x86/Instruction.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InstructionSets/x86/Instruction.hpp b/InstructionSets/x86/Instruction.hpp index 208132527..716a952d3 100644 --- a/InstructionSets/x86/Instruction.hpp +++ b/InstructionSets/x86/Instruction.hpp @@ -516,13 +516,13 @@ constexpr bool supports(Operation operation, Repetition repetition) { case Operation::INS: case Operation::OUTS: - case Operation::LODS: return repetition == Repetition::RepE; - case Operation::STOS: - case Operation::MOVS: case Operation::CMPS: + case Operation::LODS: + case Operation::MOVS: case Operation::SCAS: + case Operation::STOS: return true; case Operation::IDIV: