[Lldb-commits] [lldb] [lldb] Add options to "statistics dump" to control what sections are dumped (PR #95075)

via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 17 11:28:40 PDT 2024


================
@@ -133,7 +133,9 @@ struct ConstStringStats {
 struct StatisticsOptions {
   bool summary_only = false;
   bool load_all_debug_info = false;
-  bool include_transcript = false;
+  bool include_targets = true;
+  bool include_modules = true;
----------------
royitaqi wrote:

Right now I'm putting the implementation in the .h file. They are kinda short, so I'm thinking this might be fine.

LMK if you want me to move the smart `GetIncludeXxx` functions into the .cpp file.

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


More information about the lldb-commits mailing list