Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index bd607e2f3712c03a7f071a884fd5c355684c4912..08b66406b7e3fbf7c7b95533b9eab75cd771bf86 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -1975,7 +1975,6 @@ Isolate::Isolate(bool enable_serializer) |
allocator_(FLAG_trace_gc_object_stats |
? new VerboseAccountingAllocator(&heap_, 256 * KB) |
: new AccountingAllocator()), |
- runtime_zone_(new Zone(allocator_)), |
inner_pointer_to_code_cache_(NULL), |
global_handles_(NULL), |
eternal_handles_(NULL), |
@@ -2170,9 +2169,6 @@ void Isolate::SetIsolateThreadLocals(Isolate* isolate, |
Isolate::~Isolate() { |
TRACE_ISOLATE(destructor); |
- // Has to be called while counters_ are still alive |
- runtime_zone_->DeleteKeptSegment(); |
- |
// The entry stack must be empty when we get here. |
DCHECK(entry_stack_ == NULL || entry_stack_->previous_item == NULL); |
@@ -2249,9 +2245,6 @@ Isolate::~Isolate() { |
delete cancelable_task_manager_; |
cancelable_task_manager_ = nullptr; |
- delete runtime_zone_; |
- runtime_zone_ = nullptr; |
- |
delete allocator_; |
allocator_ = nullptr; |