Index: src/mark-compact-inl.h |
diff --git a/src/mark-compact-inl.h b/src/mark-compact-inl.h |
index fd25a403cae2d131a753bc22ff58276ab2053004..c9ed66f6bf1eed8ae4f804bd3814195b0431ecfb 100644 |
--- a/src/mark-compact-inl.h |
+++ b/src/mark-compact-inl.h |
@@ -45,8 +45,10 @@ MarkBit Marking::MarkBitFrom(Address addr) { |
void MarkCompactCollector::SetFlags(int flags) { |
- sweep_precisely_ = ((flags & Heap::kMakeHeapIterableMask) != 0); |
+ sweep_precisely_ = ((flags & Heap::kSweepPreciselyMask) != 0); |
reduce_memory_footprint_ = ((flags & Heap::kReduceMemoryFootprintMask) != 0); |
+ abort_incremental_marking_ = |
+ ((flags & Heap::kAbortIncrementalMarkingMask) != 0); |
} |