Extended function lookup to allow the user to
indicate whether inline functions are desired.
This allows the expression parser, for instance,
to filter out inlined functions when looking for
functions it can call.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@150279 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandCompletions.cpp b/source/Commands/CommandCompletions.cpp
index 4fb2d97..dbeb564 100644
--- a/source/Commands/CommandCompletions.cpp
+++ b/source/Commands/CommandCompletions.cpp
@@ -618,8 +618,9 @@
     {
         SymbolContextList sc_list;        
         const bool include_symbols = true;
+        const bool include_inlines = true;
         const bool append = true;
-        context.module_sp->FindFunctions (m_regex, include_symbols, append, sc_list);
+        context.module_sp->FindFunctions (m_regex, include_symbols, include_inlines, append, sc_list);
 
         SymbolContext sc;
         // Now add the functions & symbols to the list - only add if unique: