summaryrefslogtreecommitdiff
path: root/deps/v8/src/heap/slot-set.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/heap/slot-set.cc')
-rw-r--r--deps/v8/src/heap/slot-set.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/heap/slot-set.cc b/deps/v8/src/heap/slot-set.cc
index 92540574a0..ae4dd7a79f 100644
--- a/deps/v8/src/heap/slot-set.cc
+++ b/deps/v8/src/heap/slot-set.cc
@@ -64,7 +64,7 @@ void TypedSlotSet::ClearInvalidSlots(
while (chunk != nullptr) {
for (TypedSlot& slot : chunk->buffer) {
SlotType type = TypeField::decode(slot.type_and_offset);
- if (type == CLEARED_SLOT) continue;
+ if (type == SlotType::kCleared) continue;
uint32_t offset = OffsetField::decode(slot.type_and_offset);
std::map<uint32_t, uint32_t>::const_iterator upper_bound =
invalid_ranges.upper_bound(offset);