[Lldb-commits] [lldb] r360105 - [Breakpoint] Remove unused dependency
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon May 6 18:03:41 PDT 2019
Author: xiaobai
Date: Mon May 6 18:03:40 2019
New Revision: 360105
URL: http://llvm.org/viewvc/llvm-project?rev=360105&view=rev
Log:
[Breakpoint] Remove unused dependency
The CPlusPlus Language plugin is unused in lldbBreakpoint. We should just remove
it.
A great follow up to this change would be to remove the dependency on the ObjC
language plugin, but that is actually used and requires some refactoring.
Modified:
lldb/trunk/source/Breakpoint/BreakpointResolverName.cpp
lldb/trunk/source/Breakpoint/CMakeLists.txt
Modified: lldb/trunk/source/Breakpoint/BreakpointResolverName.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointResolverName.cpp?rev=360105&r1=360104&r2=360105&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/BreakpointResolverName.cpp (original)
+++ lldb/trunk/source/Breakpoint/BreakpointResolverName.cpp Mon May 6 18:03:40 2019
@@ -8,7 +8,6 @@
#include "lldb/Breakpoint/BreakpointResolverName.h"
-#include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
#include "Plugins/Language/ObjC/ObjCLanguage.h"
#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Core/Architecture.h"
Modified: lldb/trunk/source/Breakpoint/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/CMakeLists.txt?rev=360105&r1=360104&r2=360105&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/CMakeLists.txt (original)
+++ lldb/trunk/source/Breakpoint/CMakeLists.txt Mon May 6 18:03:40 2019
@@ -30,7 +30,6 @@ add_lldb_library(lldbBreakpoint
lldbSymbol
lldbTarget
lldbUtility
- lldbPluginCPlusPlusLanguage
lldbPluginObjCLanguage
LINK_COMPONENTS
More information about the lldb-commits
mailing list