From d6b469dd058f9a18781a9ec5e2ee555aedba2c62 Mon Sep 17 00:00:00 2001 From: Alex Langford Date: Thu, 2 May 2019 01:10:38 +0000 Subject: [PATCH] [CMake] Remove EmulateInstructionMIPS dependency on Interpreter llvm-svn: 359748 --- lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt | 1 - lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt b/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt index b2fe0ee..d25735d 100644 --- a/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt +++ b/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt @@ -7,7 +7,6 @@ add_lldb_library(lldbPluginInstructionMIPS PLUGIN LINK_LIBS lldbCore - lldbInterpreter lldbSymbol lldbTarget lldbPluginProcessUtility diff --git a/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h b/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h index 9f1eb5b..cd447ae 100644 --- a/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h +++ b/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h @@ -20,8 +20,11 @@ class MCInstrInfo; class MCInst; } +namespace lldb_private { + class OptionValueDictionary; +} + #include "lldb/Core/EmulateInstruction.h" -#include "lldb/Interpreter/OptionValue.h" #include "lldb/Utility/Status.h" class EmulateInstructionMIPS : public lldb_private::EmulateInstruction { -- 2.7.4