[Lldb-commits] [lldb] Fix statistics dump to report per-target (PR #113723)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 25 12:50:55 PDT 2024


================
@@ -422,6 +422,13 @@ class SymbolFile : public PluginInterface {
   /// hasn't been indexed yet, or a valid duration if it has.
   virtual StatsDuration::Duration GetDebugInfoIndexTime() { return {}; }
 
+  /// Reset the time taken to parse the debug information.
+  virtual void ResetDebugInfoParseTime() {}
----------------
clayborg wrote:

Change to a single function `virtual void ResetStatistics();`

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


More information about the lldb-commits mailing list