Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: src/isolate.cc

Issue 2301883002: CallInterfaceDescriptor should use MachineType (Closed)
Patch Set: Remove unneeded zone in the isolate. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index b58f7f870960f43ea804a2a3f376a32644ecfadf..6ddc31ce2b0255a53fb21a2e3a35935e85576681 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1936,7 +1936,6 @@ Isolate::Isolate(bool enable_serializer)
? new VerboseAccountingAllocator(&heap_, 256 * KB)
: new base::AccountingAllocator()),
runtime_zone_(new Zone(allocator_)),
- interface_descriptor_zone_(new Zone(allocator_)),
inner_pointer_to_code_cache_(NULL),
global_handles_(NULL),
eternal_handles_(NULL),
@@ -2215,9 +2214,6 @@ Isolate::~Isolate() {
delete runtime_zone_;
runtime_zone_ = nullptr;
- delete interface_descriptor_zone_;
- interface_descriptor_zone_ = nullptr;
-
delete allocator_;
allocator_ = nullptr;
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698