From ead8b7437e142a5268bbdfe818d047e51a132627 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 9 Mar 2022 15:26:20 -0500 Subject: [PATCH] Remove done TODO. --- InstructionSets/x86/Instruction.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/InstructionSets/x86/Instruction.hpp b/InstructionSets/x86/Instruction.hpp index 7eec36268..33c99dcb7 100644 --- a/InstructionSets/x86/Instruction.hpp +++ b/InstructionSets/x86/Instruction.hpp @@ -628,7 +628,6 @@ template class Instruction { Repetition repetition() const { return Repetition(repetition_size_ & 3); } DataSize operation_size() const { return DataSize(repetition_size_ >> 2); } - // TODO: confirm whether far call for some reason makes these 32-bit in protected mode. uint16_t segment() const { return uint16_t(operand_); } DisplacementT offset() const { return displacement_; }