Skip to content

Commit bd7d651

Browse files
[llvm-debuginfo-analyzer] Fix crash with WebAssembly dead code
#136772 Incorrect handling of 'tombstone' value for WebAssembly. Fix clang-format issue.
1 parent 971204b commit bd7d651

File tree

1 file changed

+2
-2
lines changed
  • llvm/include/llvm/DebugInfo/LogicalView/Core

1 file changed

+2
-2
lines changed

llvm/include/llvm/DebugInfo/LogicalView/Core/LVRange.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class LVRange final : public LVObject {
6060

6161
public:
6262
LVRange(LVAddress Address = MaxAddress)
63-
: LVObject(),
64-
RangesTree(Allocator), TombstoneAddress(Address), Lower(Address) {}
63+
: LVObject(), RangesTree(Allocator), TombstoneAddress(Address),
64+
Lower(Address) {}
6565
LVRange(const LVRange &) = delete;
6666
LVRange &operator=(const LVRange &) = delete;
6767
~LVRange() = default;

0 commit comments

Comments
 (0)