[Lldb-commits] [lldb] [GDBRemote] Handle 'heap' memory region info type (PR #105883)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 23 14:02:40 PDT 2024


================
@@ -1635,6 +1635,8 @@ Status GDBRemoteCommunicationClient::GetMemoryRegionInfo(
           for (llvm::StringRef entry : llvm::split(value, ',')) {
             if (entry == "stack")
               region_info.SetIsStackMemory(MemoryRegionInfo::eYes);
+            if (entry == "heap")
----------------
kastiglione wrote:

else if?

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


More information about the lldb-commits mailing list