Index: test/cctest/compiler/test-js-typed-lowering.cc |
diff --git a/test/cctest/compiler/test-js-typed-lowering.cc b/test/cctest/compiler/test-js-typed-lowering.cc |
index 058c0ee903602857cdf256fedd954b1ddd0c4d5d..40915d44f958c8812caaaccb6251db8c9d0d5755 100644 |
--- a/test/cctest/compiler/test-js-typed-lowering.cc |
+++ b/test/cctest/compiler/test-js-typed-lowering.cc |
@@ -90,7 +90,7 @@ class JSTypedLoweringTester : public HandleAndZoneScope { |
Node* reduce(Node* node) { |
JSGraph jsgraph(main_isolate(), &graph, &common, &javascript, &machine); |
// TODO(titzer): mock the GraphReducer here for better unit testing. |
- GraphReducer graph_reducer(&graph, main_zone()); |
+ GraphReducer graph_reducer(&graph, nullptr, nullptr, main_zone()); |
JSTypedLowering reducer(&graph_reducer, &jsgraph, main_zone()); |
Reduction reduction = reducer.Reduce(node); |
if (reduction.Changed()) return reduction.replacement(); |