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.

llvm-svn: 150279
This commit is contained in:
Sean Callanan
2012-02-10 22:52:19 +00:00
parent 59fe3f89cb
commit 9df05fbb7f
25 changed files with 93 additions and 40 deletions

View File

@@ -327,10 +327,12 @@ SBModule::FindFunctions (const char *name,
{
const bool append = true;
const bool symbols_ok = true;
const bool inlines_ok = true;
m_opaque_sp->FindFunctions (ConstString(name),
NULL,
name_type_mask,
symbols_ok,
symbols_ok,
inlines_ok,
append,
*sb_sc_list);
}