diff options
author | Pavel Labath <pavel@labath.sk> | 2019-06-14 13:21:57 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-06-14 13:21:57 +0000 |
commit | fe79fbc99dbb8628178a7edae9f313a49eec444b (patch) | |
tree | 5eca5a0bdbe6b6e4020b2360aad69f55e6991d0e | |
parent | 6a2eb3671018993c316451884c530d6c208f0b80 (diff) | |
download | bcm5719-llvm-fe79fbc99dbb8628178a7edae9f313a49eec444b.tar.gz bcm5719-llvm-fe79fbc99dbb8628178a7edae9f313a49eec444b.zip |
DWARF: Remove unused includes from DWARFDebugAranges.h/cpp
llvm-svn: 363382
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp | 13 | ||||
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h | 5 |
2 files changed, 3 insertions, 15 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp index e2de7d536f1..ccf33e6dc34 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp @@ -7,20 +7,11 @@ //===----------------------------------------------------------------------===// #include "DWARFDebugAranges.h" - -#include <assert.h> -#include <stdio.h> - -#include <algorithm> - +#include "DWARFDebugArangeSet.h" +#include "DWARFUnit.h" #include "lldb/Utility/Log.h" -#include "lldb/Utility/Stream.h" #include "lldb/Utility/Timer.h" -#include "DWARFUnit.h" -#include "DWARFDebugInfo.h" -#include "SymbolFileDWARF.h" - using namespace lldb; using namespace lldb_private; diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h index 0cb8c2bf0b3..74ba011b27a 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h @@ -9,12 +9,9 @@ #ifndef SymbolFileDWARF_DWARFDebugAranges_h_ #define SymbolFileDWARF_DWARFDebugAranges_h_ -#include "DWARFDebugArangeSet.h" +#include "lldb/Core/dwarf.h" #include "lldb/Utility/RangeMap.h" #include "llvm/Support/Error.h" -#include <list> - -class SymbolFileDWARF; class DWARFDebugAranges { protected: |