[Lldb-commits] [lldb] r359748 - [CMake] Remove EmulateInstructionMIPS dependency on Interpreter
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Wed May 1 18:10:38 PDT 2019
Author: xiaobai
Date: Wed May 1 18:10:38 2019
New Revision: 359748
URL: http://llvm.org/viewvc/llvm-project?rev=359748&view=rev
Log:
[CMake] Remove EmulateInstructionMIPS dependency on Interpreter
Modified:
lldb/trunk/source/Plugins/Instruction/MIPS/CMakeLists.txt
lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
Modified: lldb/trunk/source/Plugins/Instruction/MIPS/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/MIPS/CMakeLists.txt?rev=359748&r1=359747&r2=359748&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/MIPS/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Instruction/MIPS/CMakeLists.txt Wed May 1 18:10:38 2019
@@ -7,7 +7,6 @@ add_lldb_library(lldbPluginInstructionMI
LINK_LIBS
lldbCore
- lldbInterpreter
lldbSymbol
lldbTarget
lldbPluginProcessUtility
Modified: lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h?rev=359748&r1=359747&r2=359748&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h (original)
+++ lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h Wed May 1 18:10:38 2019
@@ -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 {
More information about the lldb-commits
mailing list