[PATCH] D79962: Fix the verification of DIEs with DW_AT_ranges.
Greg Clayton via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 14 19:35:22 PDT 2020
clayborg marked an inline comment as done.
clayborg added inline comments.
================
Comment at: llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp:413
- << *IntersectingRange << "\n";
- break;
}
----------------
This was the problem "break;" that would stop parsing each range in "Ranges" and cause the address ranges for a DIE with DW_AT_ranges to be truncated. We still want a complete address range list for verification purposes.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79962/new/
https://reviews.llvm.org/D79962
More information about the llvm-commits
mailing list