================
@@ -1600,6 +1600,15 @@ bool Module::MergeArchitecture(const ArchSpec 
&arch_spec) {
   return SetArchitecture(merged_arch);
 }
 
+void Module::ResetStatistics() {
+  m_symtab_parse_time.reset();
+  m_symtab_index_time.reset();
+  SymbolFile *sym_file = GetSymbolFile();
+  if (sym_file) {
+    sym_file->ResetStatistics();
+  }
----------------
clayborg wrote:

remove braces from single line "if" statement per llvm coding guidelines

https://github.com/llvm/llvm-project/pull/113723
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to