diff options
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 42bfefe8d62..37434beac43 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -254,8 +254,6 @@ ObjectFileELF::ObjectFileELF (const lldb::ModuleSP &module_sp, m_header(), m_program_headers(), m_section_headers(), - m_sections_ap(), - m_symtab_ap(), m_filespec_ap(), m_shstr_data() { diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h index 2c1ff6c4d38..ba4057c5f3d 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h @@ -153,12 +153,6 @@ private: /// Collection of symbols from the dynamic table. DynamicSymbolColl m_dynamic_symbols; - /// List of sections present in this ELF object file. - mutable std::auto_ptr<lldb_private::SectionList> m_sections_ap; - - /// Table of all non-dynamic symbols present in this object file. - mutable std::auto_ptr<lldb_private::Symtab> m_symtab_ap; - /// List of file specifications corresponding to the modules (shared /// libraries) on which this object file depends. mutable std::auto_ptr<lldb_private::FileSpecList> m_filespec_ap; |