[CMake] Remove EmulateInstructionMIPS dependency on Interpreter
authorAlex Langford <apl@fb.com>
Thu, 2 May 2019 01:10:38 +0000 (01:10 +0000)
committerAlex Langford <apl@fb.com>
Thu, 2 May 2019 01:10:38 +0000 (01:10 +0000)
llvm-svn: 359748

lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt
lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h

index b2fe0ee..d25735d 100644 (file)
@@ -7,7 +7,6 @@ add_lldb_library(lldbPluginInstructionMIPS PLUGIN
 
   LINK_LIBS
     lldbCore
-    lldbInterpreter
     lldbSymbol
     lldbTarget
     lldbPluginProcessUtility
index 9f1eb5b..cd447ae 100644 (file)
@@ -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 {