https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/171901
None >From 2f3289a9d583f1bdab792a513d4a0905ad02918a Mon Sep 17 00:00:00 2001 From: Alex Langford <[email protected]> Date: Thu, 11 Dec 2025 11:26:42 -0800 Subject: [PATCH] [lldb][NFCI] Remove unused methods from Module::LookupInfo --- lldb/include/lldb/Core/Module.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lldb/include/lldb/Core/Module.h b/lldb/include/lldb/Core/Module.h index 40ce23e3d2ffb..e2f09bdbbb4cb 100644 --- a/lldb/include/lldb/Core/Module.h +++ b/lldb/include/lldb/Core/Module.h @@ -935,18 +935,12 @@ class Module : public std::enable_shared_from_this<Module>, ConstString GetName() const { return m_name; } - void SetName(ConstString name) { m_name = name; } - ConstString GetLookupName() const { return m_lookup_name; } void SetLookupName(ConstString name) { m_lookup_name = name; } lldb::FunctionNameType GetNameTypeMask() const { return m_name_type_mask; } - void SetNameTypeMask(lldb::FunctionNameType mask) { - m_name_type_mask = mask; - } - lldb::LanguageType GetLanguageType() const { return m_language; } bool NameMatchesLookupInfo( _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
