[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 22:25:09 PDT 2025
================
@@ -1725,7 +1725,8 @@ SymbolFileDWARF *SymbolFileDWARF::GetDIERefSymbolFile(const DIERef &die_ref) {
return GetDwpSymbolFile().get(); // DWP case
// Handle the .dwo file case correctly
- return DebugInfo().GetUnitAtIndex(*die_ref.file_index())
+ return DebugInfo()
+ .GetUnitAtIndex(*die_ref.file_index())
->GetDwoSymbolFile(); // DWO case
----------------
clayborg wrote:
Ditto (revert auto clang-format changes for stuff that isn't associated with this PR).
https://github.com/llvm/llvm-project/pull/155023
More information about the lldb-commits
mailing list