diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-10-20 15:43:40 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-10-20 15:43:40 +0000 |
commit | da4e8ed69ab887df66627144eecbfb6204f7f2d3 (patch) | |
tree | 3a534ebcfa8031f7cb6da15885ca9968ef03a403 /lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp | |
parent | 36307ffa1b7d3a5975435a0e9ed874b10e153bfc (diff) | |
download | bcm5719-llvm-da4e8ed69ab887df66627144eecbfb6204f7f2d3.tar.gz bcm5719-llvm-da4e8ed69ab887df66627144eecbfb6204f7f2d3.zip |
Revert "Make dwarf parsing multi-threaded"
Revert it bacuse it introduces several race condition detected by
the build bots.
This reverts commit 5107a5ebdb7c4571a30a7098b40bf8098b678447.
llvm-svn: 250832
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp b/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp index 775bb6718b8..8085cabed33 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp @@ -83,14 +83,3 @@ NameToDIE::ForEach (std::function <bool(const char *name, const DIERef& die_ref) break; } } - -void -NameToDIE::Append (const NameToDIE& other) -{ - const uint32_t size = other.m_map.GetSize(); - for (uint32_t i = 0; i < size; ++i) - { - m_map.Append(other.m_map.GetCStringAtIndexUnchecked (i), - other.m_map.GetValueAtIndexUnchecked (i)); - } -} |