Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index f2571e3c6ddf2f815a81dc494274f6d7a4eb7358..7efde49b61061014d4e1466d3db6043218f2f680 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -53,7 +53,8 @@ class PipelineData { |
graph_(new (graph_zone()) Graph(graph_zone())), |
source_positions_(new SourcePositionTable(graph())), |
machine_(new (graph_zone()) MachineOperatorBuilder( |
- kMachPtr, InstructionSelector::SupportedMachineOperatorFlags())), |
+ graph_zone(), kMachPtr, |
+ InstructionSelector::SupportedMachineOperatorFlags())), |
common_(new (graph_zone()) CommonOperatorBuilder(graph_zone())), |
javascript_(new (graph_zone()) JSOperatorBuilder(graph_zone())), |
jsgraph_(new (graph_zone()) |