Skip to content

Commit

Permalink
Revert "[LLDB] Handle DIE with DW_AT_low_pc and empty ranges"
Browse files Browse the repository at this point in the history
This reverts commit 1beededc0e7d86d09cee972f0b9f0030a139cab4.

Due to failures on the Arm/AArch64 build bots:
https://lab.llvm.org/buildbot/#/builders/96/builds/25032
  • Loading branch information
DavidSpickett committed Jun 23, 2022
1 parent 88e6449 commit 5e7ddb0
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 826 deletions.
2 changes: 0 additions & 2 deletions lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Expand Up @@ -1279,8 +1279,6 @@ size_t SymbolFileDWARF::ParseBlocksRecursive(
const size_t num_ranges = ranges.GetSize();
for (size_t i = 0; i < num_ranges; ++i) {
const DWARFRangeList::Entry &range = ranges.GetEntryRef(i);
if (range.GetByteSize() == 0)
continue;
const addr_t range_base = range.GetRangeBase();
if (range_base >= subprogram_low_pc)
block->AddRange(Block::Range(range_base - subprogram_low_pc,
Expand Down
369 changes: 0 additions & 369 deletions lldb/test/Shell/Commands/Inputs/dwarf4-low-pc-ranges-inlining.s

This file was deleted.

0 comments on commit 5e7ddb0

Please sign in to comment.