[Lldb-commits] [lldb] r131526 - /lldb/trunk/source/Core/Module.cpp

Jim Ingham jingham at apple.com
Tue May 17 22:02:10 PDT 2011


Author: jingham
Date: Wed May 18 00:02:10 2011
New Revision: 131526

URL: http://llvm.org/viewvc/llvm-project?rev=131526&view=rev
Log:
FindFunctions was skipping the include_symbols section if it found a SymbolVendor.

Modified:
    lldb/trunk/source/Core/Module.cpp

Modified: lldb/trunk/source/Core/Module.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Module.cpp?rev=131526&r1=131525&r2=131526&view=diff
==============================================================================
--- lldb/trunk/source/Core/Module.cpp (original)
+++ lldb/trunk/source/Core/Module.cpp Wed May 18 00:02:10 2011
@@ -380,7 +380,7 @@
     
     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)
     {





More information about the lldb-commits mailing list