[Lldb-commits] [PATCH] D86110: [WIP][DebugInfo] Lazily parse debug_loclist offsets
Jan Kratochvil via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 12 02:10:06 PST 2021
jankratochvil 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;
----------------
That is going to be addressed in D98289.
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