[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
================
@@ -4464,6 +4464,11 @@ StatsDuration::Duration SymbolFileDWARF::GetDebugInfoIndexTime() {
return {};
}
+void SymbolFileDWARF::ResetDebugInfoIndexTime() {
+ if (m_index)
+ return m_index->ResetIndexTime();
+}
+
----------------
clayborg wrote:
Change to `ResetStatistics`
https://github.com/llvm/llvm-project/pull/113723
More information about the lldb-commits
mailing list