| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 4177a75982df7337f4d9b1679a9361d9caaf2719..5e725284f39807983e56efd38900021c65cac5a6 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -21,14 +21,15 @@ namespace compiler {
|
|
|
| AstGraphBuilder::AstGraphBuilder(Zone* local_zone, CompilationInfo* info,
|
| JSGraph* jsgraph, LoopAssignmentAnalysis* loop)
|
| - : StructuredGraphBuilder(local_zone, jsgraph->graph(), jsgraph->common()),
|
| + : StructuredGraphBuilder(jsgraph->isolate(), local_zone, jsgraph->graph(),
|
| + jsgraph->common()),
|
| info_(info),
|
| jsgraph_(jsgraph),
|
| globals_(0, local_zone),
|
| breakable_(NULL),
|
| execution_context_(NULL),
|
| loop_assignment_analysis_(loop) {
|
| - InitializeAstVisitor(local_zone);
|
| + InitializeAstVisitor(info->isolate(), local_zone);
|
| }
|
|
|
|
|
|
|