[Lldb-commits] [lldb] [lldb][RISCV] Handle subsets of CSRs in RV32 core dump images (PR #142932)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 6 09:10:04 PST 2026
================
@@ -353,9 +354,16 @@ UUID ProcessElfCore::FindModuleUUID(const llvm::StringRef path) {
}
lldb_private::DynamicLoader *ProcessElfCore::GetDynamicLoader() {
- if (m_dyld_up.get() == nullptr)
- m_dyld_up.reset(DynamicLoader::FindPlugin(
- this, DynamicLoaderPOSIXDYLD::GetPluginNameStatic()));
+ if (m_dyld_up.get() == nullptr) {
----------------
JDevlieghere wrote:
```suggestion
if (!m_dyld_up) {
```
https://github.com/llvm/llvm-project/pull/142932
More information about the lldb-commits
mailing list