diff options
author | Jim Ingham <jingham@apple.com> | 2011-10-11 01:18:11 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-10-11 01:18:11 +0000 |
commit | ea8005a78620cece929ed2a301dc6956e8b25d5a (patch) | |
tree | fd7a8a7cef468df65ee8f8a55e796441c34d9863 | |
parent | b6d72cbeb9bcac1bbd5349b84c3962fda0fcf935 (diff) | |
download | bcm5719-llvm-ea8005a78620cece929ed2a301dc6956e8b25d5a.tar.gz bcm5719-llvm-ea8005a78620cece929ed2a301dc6956e8b25d5a.zip |
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.
llvm-svn: 141624
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index bcbb448807e..fe0dd8679fc 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -2467,7 +2467,7 @@ SymbolFileDWARF::FindFunctions (const ConstString &name, 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 @@ SymbolFileDWARF::FindFunctions (const ConstString &name, die_offsets.clear(); } - if (name_type_mask & eFunctionNameTypeSelector) + if (effective_name_type_mask & eFunctionNameTypeSelector) { FindFunctions (name, m_function_selector_index, sc_list); } |