[Lldb-commits] [PATCH] D112501: Add new key/value pairs to the module statistics for "statistics dump".

walter erquinigo via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 25 18:48:43 PDT 2021


wallace accepted this revision.
wallace added a comment.
This revision is now accepted and ready to land.

looks good



================
Comment at: lldb/include/lldb/Symbol/SymbolFile.h:309
+  /// this call should add the size of all sections that contain debug
+  /// information. Symbols the symbol tables are not considered debug
+  /// information for this call to make it easy and quick for this number to be
----------------
`Symbols the symbol tables` -> fix that :)


================
Comment at: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp:1463-1464
+        SymbolFile *symfile = module_sp->GetSymbolFile();
+        if (symfile)
+          elapsed += symfile->GetDebugInfoParseTime();
+      }
----------------
missing braces


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D112501



More information about the lldb-commits mailing list