[Lldb-commits] [lldb] [lldb][NFCI] Remove unused methods from Module::LookupInfo (PR #171901)

via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 11 12:49:05 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Alex Langford (bulbazord)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/171901.diff


1 Files Affected:

- (modified) lldb/include/lldb/Core/Module.h (-6) 


``````````diff
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(

``````````

</details>


https://github.com/llvm/llvm-project/pull/171901


More information about the lldb-commits mailing list