[llvm] [NFC][DebugInfo] Wrap DILineInfo return type with std::optional to handle missing debug info. (PR #129792)
Zequan Wu via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 16:57:13 PDT 2025
================
@@ -131,7 +137,8 @@ PDBContext::getInliningInfoForAddress(object::SectionedAddress Address,
InlineInfo.addFrame(LineInfo);
}
- InlineInfo.addFrame(CurrentLine);
+ if (CurrentLine)
+ InlineInfo.addFrame(*CurrentLine);
----------------
ZequanWu wrote:
Reverted. Use value_or instead.
https://github.com/llvm/llvm-project/pull/129792
More information about the llvm-commits
mailing list