diff options
| author | Greg Clayton <gclayton@fb.com> | 2021-11-17 18:07:28 -0800 |
|---|---|---|
| committer | Greg Clayton <gclayton@fb.com> | 2021-11-17 18:07:28 -0800 |
| commit | a68ccda203aad2cc4fd386d5e893237f09fa1ffb (patch) | |
| tree | 3a2bc1d7b73efebd4edfa80c714dd9f05d464a4c /lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp | |
| parent | 92eaad2dd7adb5ee92f397cef85ab11f2612294e (diff) | |
Revert "[NFC] Refactor symbol table parsing."
This reverts commit 951b107eedab1829f18049443f03339dbb0db165.
Buildbots were failing, there is a deadlock in /Users/gclayton/Documents/src/llvm/clean/llvm-project/lldb/test/Shell/SymbolFile/DWARF/DW_AT_range-DW_FORM_sec_offset.s when ELF files try to relocate things.
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp')
| -rw-r--r-- | lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp b/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp index ce701fd823fd..bad730512ff4 100644 --- a/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp +++ b/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp @@ -116,10 +116,9 @@ bool ObjectFileBreakpad::ParseHeader() { return true; } -void ObjectFileBreakpad::ParseSymtab(Symtab &symtab) { - // Nothing to do for breakpad files, all information is parsed as debug info - // which means "lldb_private::Function" objects are used, or symbols are added - // by the SymbolFileBreakpad::AddSymbols(...) function in the symbol file. +Symtab *ObjectFileBreakpad::GetSymtab() { + // TODO + return nullptr; } void ObjectFileBreakpad::CreateSections(SectionList &unified_section_list) { |
