[Lldb-commits] [lldb] r141624 - /lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Jim Ingham
jingham at apple.com
Mon Oct 10 18:18:11 PDT 2011
Author: jingham
Date: Mon Oct 10 20:18:11 2011
New Revision: 141624
URL: http://llvm.org/viewvc/llvm-project?rev=141624&view=rev
Log:
Fix a couple of places in FindFunctions where I was using the passed in name_type_mask
rather than the computed effective_name_type_mask.
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp?rev=141624&r1=141623&r2=141624&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp Mon Oct 10 20:18:11 2011
@@ -2467,7 +2467,7 @@
die_offsets.clear();
}
- if (name_type_mask & eFunctionNameTypeMethod)
+ if (effective_name_type_mask & eFunctionNameTypeMethod)
{
uint32_t num_base = m_function_method_index.Find(base_name_const, die_offsets);
{
@@ -2491,7 +2491,7 @@
die_offsets.clear();
}
- if (name_type_mask & eFunctionNameTypeSelector)
+ if (effective_name_type_mask & eFunctionNameTypeSelector)
{
FindFunctions (name, m_function_selector_index, sc_list);
}
More information about the lldb-commits
mailing list