[Lldb-commits] [lldb] Support statistics dump summary only mode (PR #80745)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 5 20:52:03 PST 2024


================
@@ -75,6 +75,9 @@ class CommandObjectStatsDump : public CommandObjectParsed {
       case 'a':
         m_all_targets = true;
         break;
+      case 's':
+        m_summary_only = true;
----------------
clayborg wrote:

See comment about storing a different ivar below, then this becomes:
```
m_stats_options.summary_only = true;
```


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


More information about the lldb-commits mailing list