[Lldb-commits] [lldb] [LLDB] Fix Memory64 BaseRVA, move all non-stack memory to Mem64. (PR #146777)
David Peixotto via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 16 12:16:12 PDT 2025
================
@@ -997,6 +982,13 @@ Status MinidumpFileBuilder::ReadWriteMemoryInChunks(
return lldb_private::IterationAction::Stop;
}
+ if (current_addr != addr + total_bytes_read) {
+ LLDB_LOGF(log,
+ "Current addr is at expected address, 0x%" PRIx64
----------------
dmpots wrote:
Should this be "Current addr is at *unexpected* address"
https://github.com/llvm/llvm-project/pull/146777
More information about the lldb-commits
mailing list