================
@@ -855,6 +855,23 @@ void Module::FindFunctions(ConstString name,
}
}
+void Module::FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx,
+ FunctionNameType name_type_mask,
+ const ModuleFunctionSearchOptions &options,
+ SymbolContextList &sc_list) {
+ if (compiler_ctx.empty() ||
+ compiler_ctx.back().kind != CompilerContextKind::Function)
+ return;
+ ConstString name = compiler_ctx.back().name;
+ CompilerDeclContext dc;
+ SymbolContextList unfiltered;
+ FindFunctions(name, dc,name_type_mask, options, unfiltered);
----------------
felipepiovezan wrote:
`FindFunctions(name, dc,name_type_mask`
This is probably not clang-formatted
https://github.com/llvm/llvm-project/pull/77157
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits