[Lldb-commits] [lldb] [lldb] Add count for errors of DWO files in statistics and combine DWO file count functions (PR #155023)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 28 11:03:27 PDT 2025
================
@@ -155,6 +155,7 @@ struct ModuleStats {
bool debug_info_had_incomplete_types = false;
uint32_t dwo_file_count = 0;
uint32_t loaded_dwo_file_count = 0;
+ uint32_t dwo_error_count = 0;
----------------
clayborg wrote:
We can change these three lines to:
```
DWOStats dwo_stats;
```
https://github.com/llvm/llvm-project/pull/155023
More information about the lldb-commits
mailing list