[Lldb-commits] [lldb] [LLDB] Impove ObjectFileELF's .dynamic parsing and usage. (PR #101237)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 1 14:00:43 PDT 2024


================
@@ -384,6 +392,9 @@ class ObjectFileELF : public lldb_private::ObjectFile {
   /// ELF dependent module dump routine.
   void DumpDependentModules(lldb_private::Stream *s);
 
+  /// ELF dump the .dynamic section
+  void DumpELFDynamic(lldb_private::Stream *s);
----------------
clayborg wrote:

All other dump calls use a "Stream *" so I mirrored those. I can make a separate patch to switch these over to "Stream &". Would that be ok? I didn't want to make the patch bigger

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


More information about the lldb-commits mailing list