summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-05-28 22:33:30 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-05-28 22:33:30 +0000
commitd02da8f42c2eb60dcf97120e2baeced43c1ec6e6 (patch)
treeaa8e419e15024f0d3f0d7e3f4953755f6f38ef22
parent7e48b406ef5ef2208c75874f7751a786e748706f (diff)
downloadbcm5719-llvm-d02da8f42c2eb60dcf97120e2baeced43c1ec6e6.tar.gz
bcm5719-llvm-d02da8f42c2eb60dcf97120e2baeced43c1ec6e6.zip
[SymbolFileDWARF] Remove unused member (NFC)
Removes the unused debug line instance. llvm-svn: 361886
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp2
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
index 8836de4ac5e..a015445198c 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -358,7 +358,7 @@ SymbolFileDWARF::SymbolFileDWARF(ObjectFile *objfile,
m_debug_map_module_wp(), m_debug_map_symfile(nullptr),
m_context(objfile->GetModule()->GetSectionList(), dwo_section_list),
m_data_debug_loc(), m_data_debug_ranges(), m_data_debug_rnglists(),
- m_abbr(), m_info(), m_line(), m_fetched_external_modules(false),
+ m_abbr(), m_info(), m_fetched_external_modules(false),
m_supports_DW_AT_APPLE_objc_complete_type(eLazyBoolCalculate), m_ranges(),
m_unique_ast_type_map() {}
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
index 28cfe1a9c69..ea11164700f 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
+++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
@@ -453,11 +453,9 @@ protected:
DWARFDataSegment m_data_debug_rnglists;
// The unique pointer items below are generated on demand if and when someone
- // accesses
- // them through a non const version of this class.
+ // accesses them through a non const version of this class.
std::unique_ptr<DWARFDebugAbbrev> m_abbr;
std::unique_ptr<DWARFDebugInfo> m_info;
- std::unique_ptr<DWARFDebugLine> m_line;
std::unique_ptr<GlobalVariableMap> m_global_aranges_up;
typedef std::unordered_map<lldb::offset_t, lldb_private::DebugMacrosSP>
OpenPOWER on IntegriCloud