| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 39fe69c81e6cb1d8d7b4237cce3dd4e8f50de905..647a00b0bf3b25384bfd6c0c9b7a01eec1718161 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -17,8 +17,9 @@ namespace v8 {
|
| namespace internal {
|
| namespace compiler {
|
|
|
| -AstGraphBuilder::AstGraphBuilder(CompilationInfo* info, JSGraph* jsgraph)
|
| - : StructuredGraphBuilder(jsgraph->graph(), jsgraph->common()),
|
| +AstGraphBuilder::AstGraphBuilder(Zone* local_zone, CompilationInfo* info,
|
| + JSGraph* jsgraph)
|
| + : StructuredGraphBuilder(local_zone, jsgraph->graph(), jsgraph->common()),
|
| info_(info),
|
| jsgraph_(jsgraph),
|
| globals_(0, info->zone()),
|
|
|