FindFunctions was skipping the include_symbols section if it found a SymbolVendor.

llvm-svn: 131526
This commit is contained in:
Jim Ingham 2011-05-18 05:02:10 +00:00
parent 8d9c99042f
commit 832332d724
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{