| Index: src/heap.cc
|
| diff --git a/src/heap.cc b/src/heap.cc
|
| index 6d4651c43e4c68683a87a0539aed84ce2d574c89..373d90c0be1a82650512d3287d30047666bfd81e 100644
|
| --- a/src/heap.cc
|
| +++ b/src/heap.cc
|
| @@ -5074,9 +5074,6 @@ bool Heap::Setup(bool create_heap_objects) {
|
| lo_space_ = new LargeObjectSpace(this, LO_SPACE);
|
| if (lo_space_ == NULL) return false;
|
| if (!lo_space_->Setup()) return false;
|
| -
|
| - if (!marking()->Setup()) return false;
|
| -
|
| if (create_heap_objects) {
|
| // Create initial maps.
|
| if (!CreateInitialMaps()) return false;
|
| @@ -5174,7 +5171,6 @@ void Heap::TearDown() {
|
| lo_space_ = NULL;
|
| }
|
|
|
| - marking()->TearDown();
|
| store_buffer()->TearDown();
|
|
|
| isolate_->memory_allocator()->TearDown();
|
|
|