[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:56 PDT 2024
================
@@ -318,6 +318,9 @@ class SymbolFileDWARF : public SymbolFileCommon {
StatsDuration &GetDebugInfoParseTimeRef() { return m_parse_time; }
+ void ResetDebugInfoParseTime() override { m_parse_time.reset(); }
+ void ResetDebugInfoIndexTime() override;
+
----------------
clayborg wrote:
Change to a a single function `ResetStatistics`
https://github.com/llvm/llvm-project/pull/113723
More information about the lldb-commits
mailing list