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

Unified Diff: src/lithium-allocator.cc

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All platforms Created 5 years, 11 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
Index: src/lithium-allocator.cc
diff --git a/src/lithium-allocator.cc b/src/lithium-allocator.cc
index 5f4f17f16fe1a76029381a414ae732d50f09424e..822334116f12bef6787730846db5f79e64153965 100644
--- a/src/lithium-allocator.cc
+++ b/src/lithium-allocator.cc
@@ -511,7 +511,7 @@ LifetimePosition LiveRange::FirstIntersection(LiveRange* other) {
LAllocator::LAllocator(int num_values, HGraph* graph)
- : zone_(graph->isolate()),
+ : zone_(),
Michael Starzinger 2015/01/23 14:21:11 nit: Explicit initializer call could be dropped.
danno 2015/01/23 14:45:20 Done.
chunk_(NULL),
live_in_sets_(graph->blocks()->length(), zone()),
live_ranges_(num_values * 2, zone()),

Powered by Google App Engine
This is Rietveld 408576698