forked from OSchip/llvm-project
FindFunctions was skipping the include_symbols section if it found a SymbolVendor.
llvm-svn: 131526
This commit is contained in:
parent
8d9c99042f
commit
832332d724
|
@ -380,7 +380,7 @@ Module::FindFunctions (const RegularExpression& regex,
|
||||||
|
|
||||||
SymbolVendor *symbols = GetSymbolVendor ();
|
SymbolVendor *symbols = GetSymbolVendor ();
|
||||||
if (symbols)
|
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
|
// Now check our symbol table for symbols that are code symbols if requested
|
||||||
if (include_symbols)
|
if (include_symbols)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue