[Lldb-commits] [PATCH] D86110: [WIP][DebugInfo] Lazily parse debug_loclist offsets
David Blaikie via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 12 13:51:25 PST 2021
dblaikie added inline comments.
================
Comment at: llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h:116
+ Optional<uint64_t> getOffsetEntry(DataExtractor Data, uint32_t Index) const {
+ if (Index > HeaderData.OffsetEntryCount)
+ return None;
----------------
jankratochvil wrote:
> That is going to be addressed in D98289.
Ah, thanks for the catch!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86110/new/
https://reviews.llvm.org/D86110
More information about the lldb-commits
mailing list