[Lldb-commits] [lldb] 08ce147 - [lldb][test] Fix lldb-test compile error
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 10 03:35:44 PDT 2024
Author: David Spickett
Date: 2024-07-10T10:35:28Z
New Revision: 08ce14732d528ab70309f334446d39782f2f07c0
URL: https://github.com/llvm/llvm-project/commit/08ce14732d528ab70309f334446d39782f2f07c0
DIFF: https://github.com/llvm/llvm-project/commit/08ce14732d528ab70309f334446d39782f2f07c0.diff
LOG: [lldb][test] Fix lldb-test compile error
https://github.com/llvm/llvm-project/pull/82819 made the lookup here
ambiguous.
Added:
Modified:
lldb/tools/lldb-test/lldb-test.cpp
Removed:
################################################################################
diff --git a/lldb/tools/lldb-test/lldb-test.cpp b/lldb/tools/lldb-test/lldb-test.cpp
index 30df2ddf864cd..da3822393dad1 100644
--- a/lldb/tools/lldb-test/lldb-test.cpp
+++ b/lldb/tools/lldb-test/lldb-test.cpp
@@ -509,8 +509,8 @@ Error opts::symbols::findFunctions(lldb_private::Module &Module) {
ContextOr->IsValid() ? *ContextOr : CompilerDeclContext();
List.Clear();
- Module::LookupInfo lookup_info(ConstString(Name), getFunctionNameFlags(),
- eLanguageTypeUnknown);
+ lldb_private::Module::LookupInfo lookup_info(
+ ConstString(Name), getFunctionNameFlags(), eLanguageTypeUnknown);
Symfile.FindFunctions(lookup_info, ContextPtr, true, List);
}
outs() << formatv("Found {0} functions:\n", List.GetSize());
More information about the lldb-commits
mailing list