diff options
author | Jim Ingham <jingham@apple.com> | 2011-05-18 05:02:10 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-05-18 05:02:10 +0000 |
commit | 832332d7242c0bda4b3e8aabe79d12c3299d4a44 (patch) | |
tree | 1041f2f7ca77a5aca1eec2871638fa2d7a3f58ea /lldb/source/Core/Module.cpp | |
parent | 8d9c99042f413f3df312b0ee0494d5ea921df0d0 (diff) | |
download | bcm5719-llvm-832332d7242c0bda4b3e8aabe79d12c3299d4a44.tar.gz bcm5719-llvm-832332d7242c0bda4b3e8aabe79d12c3299d4a44.zip |
FindFunctions was skipping the include_symbols section if it found a SymbolVendor.
llvm-svn: 131526
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r-- | lldb/source/Core/Module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 0b314651a89..026950e03db 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -380,7 +380,7 @@ Module::FindFunctions (const RegularExpression& regex, SymbolVendor *symbols = GetSymbolVendor (); if (symbols) - return symbols->FindFunctions(regex, append, sc_list); + symbols->FindFunctions(regex, append, sc_list); // Now check our symbol table for symbols that are code symbols if requested if (include_symbols) { |