[Lldb-commits] [PATCH] D116419: [lldb] Display MachO seg, sec of memory region

Adrian Prantl via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 7 13:05:48 PST 2022


aprantl added inline comments.


================
Comment at: lldb/source/Commands/CommandObjectMemory.cpp:1695
+              section_sp = section_sp->GetParent();
+            section_name = section_sp->GetName();
+          }
----------------
Why did `section_sp->GetName();` return the Segment name in the original code? Is that a bug?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D116419/new/

https://reviews.llvm.org/D116419



More information about the lldb-commits mailing list