[Lldb-commits] [lldb] [lldb][NFC] Make the target's SectionLoadList private. (PR #113278)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 24 17:14:56 PDT 2024
================
@@ -1140,9 +1140,13 @@ class Target : public std::enable_shared_from_this<Target>,
Address &pointer_addr,
bool force_live_memory = false);
- SectionLoadList &GetSectionLoadList() {
- return m_section_load_history.GetCurrentSectionLoadList();
- }
+ bool HasLoadedSections();
+
+ lldb::addr_t GetSectionLoadAddress(const lldb::SectionSP §ion_sp);
+
+ void ClearSectionLoadList();
----------------
jimingham wrote:
Okay.
https://github.com/llvm/llvm-project/pull/113278
More information about the lldb-commits
mailing list