[llvm] [DebugInfo] Preserve line and column number when merging debug info. (PR #129960)
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 13:43:29 PDT 2025
================
@@ -125,6 +132,14 @@ DILocation *DILocation::getMergedLocation(DILocation *LocA, DILocation *LocB) {
if (LocA == LocB)
return LocA;
+ if (PreserveMergedDebugInfo) {
+ auto A = std::make_tuple(LocA->getLine(), LocA->getColumn(),
----------------
rnk wrote:
Should filenames be compared here? DILocation has `getFilename` and `getDirectory`, which return StringRefs, so you can fill them in here in a reasonably straightforward way.
However, given the use case, would it be reasonable to always pick `LocA`?
Regardless, I think adding directories and files would follow the principle of least surprise.
https://github.com/llvm/llvm-project/pull/129960
More information about the llvm-commits
mailing list