forked from OSchip/llvm-project
[SymbolFileDWARF] Remove unused member (NFC)
Removes the unused debug line instance. llvm-svn: 361886
This commit is contained in:
parent
7e48b406ef
commit
d02da8f42c
|
@ -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() {}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue