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

Unified Diff: src/compiler/graph-builder.cc

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compilation issues 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
« no previous file with comments | « src/compiler/graph-builder.h ('k') | src/compiler/graph-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/graph-builder.cc
diff --git a/src/compiler/graph-builder.cc b/src/compiler/graph-builder.cc
index 9fa7a02754c127de38f2a3a7de8911fc2126b62e..4457ba095e70a24cced0e55f534be9ca67005bb9 100644
--- a/src/compiler/graph-builder.cc
+++ b/src/compiler/graph-builder.cc
@@ -17,9 +17,10 @@ namespace internal {
namespace compiler {
-StructuredGraphBuilder::StructuredGraphBuilder(Zone* local_zone, Graph* graph,
+StructuredGraphBuilder::StructuredGraphBuilder(Isolate* isolate,
+ Zone* local_zone, Graph* graph,
CommonOperatorBuilder* common)
- : GraphBuilder(graph),
+ : GraphBuilder(isolate, graph),
common_(common),
environment_(NULL),
local_zone_(local_zone),
« no previous file with comments | « src/compiler/graph-builder.h ('k') | src/compiler/graph-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698