[llvm] [DWARFVerifier] Allow overlapping ranges for ICF-merged functions (PR #117952)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 16 12:00:38 PST 2024
================
@@ -622,7 +627,8 @@ unsigned DWARFVerifier::verifyDieRanges(const DWARFDie &Die,
}
// Verify that children don't intersect.
- const auto IntersectingChild = ParentRI.insert(RI);
+ bool AllowDuplicates = Die.getTag() == DW_TAG_subprogram;
----------------
alx32 wrote:
Thanks for the example - the latest version addresses this.
https://github.com/llvm/llvm-project/pull/117952
More information about the llvm-commits
mailing list