Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 5c9ee62a459d3ff4474a722959f3b2cfb2ec2497..20f3d60daab8cd33f27a6c5d61c3be0fd71a4fc7 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -570,7 +570,7 @@ struct TypedLoweringPhase { |
void Run(PipelineData* data, Zone* temp_zone) { |
JSGraphReducer graph_reducer(data->jsgraph(), temp_zone); |
LoadElimination load_elimination; |
- JSBuiltinReducer builtin_reducer(data->jsgraph()); |
+ JSBuiltinReducer builtin_reducer(&graph_reducer, data->jsgraph()); |
JSTypedLowering typed_lowering(&graph_reducer, data->jsgraph(), temp_zone); |
JSIntrinsicLowering intrinsic_lowering( |
&graph_reducer, data->jsgraph(), |