Skip to content

Commit 036b1e6

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 4d1a2eb commit 036b1e6

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
@@ -61,8 +61,8 @@ class LLVM_ABI LVRange final : public LVObject {
6161

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

0 commit comments

Comments
 (0)