From 832332d7242c0bda4b3e8aabe79d12c3299d4a44 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Wed, 18 May 2011 05:02:10 +0000 Subject: [PATCH] FindFunctions was skipping the include_symbols section if it found a SymbolVendor. llvm-svn: 131526 --- lldb/source/Core/Module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 0b314651a898..026950e03dbf 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) {