From 5892e5a300ded7e8690002131675daf9a9f295c0 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 4 Aug 2020 11:05:30 -0400 Subject: [PATCH] LibX86: Remove unused private fields m_segment, m_handler --- Libraries/LibX86/Instruction.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/LibX86/Instruction.h b/Libraries/LibX86/Instruction.h index 93cab62ba4..1c4f87e9e1 100644 --- a/Libraries/LibX86/Instruction.h +++ b/Libraries/LibX86/Instruction.h @@ -419,7 +419,6 @@ private: u32 evaluate_sib(const CPU&, SegmentRegister& default_segment) const; unsigned m_register_index { 0xffffffff }; - SegmentRegister m_segment; union { u32 m_offset32 { 0 }; u16 m_offset16; @@ -539,7 +538,6 @@ private: mutable MemoryOrRegisterReference m_modrm; InstructionDescriptor* m_descriptor { nullptr }; - InstructionHandler m_handler { nullptr }; }; template