diff options
author | Sean Callanan <scallanan@apple.com> | 2012-02-10 22:52:19 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-02-10 22:52:19 +0000 |
commit | 9df05fbb7f651ee824c80161db5833bf412f9997 (patch) | |
tree | 30e09e7eab43f7792f6d9a027fa79aa16f009d95 /lldb/source/API/SBModule.cpp | |
parent | 59fe3f89cb4e79364ff6e9ac8d25d3e7855b153f (diff) | |
download | llvm-9df05fbb7f651ee824c80161db5833bf412f9997.zip llvm-9df05fbb7f651ee824c80161db5833bf412f9997.tar.gz llvm-9df05fbb7f651ee824c80161db5833bf412f9997.tar.bz2 |
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
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 1fe5122..a1ec557 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -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); } |