Index: test/cctest/compiler/test-simplified-lowering.cc |
diff --git a/test/cctest/compiler/test-simplified-lowering.cc b/test/cctest/compiler/test-simplified-lowering.cc |
index 1ef35598be60901ddd268f8625bb332344f6c3e4..fe2c18d94efed833ee2f301be31670e1a06e1050 100644 |
--- a/test/cctest/compiler/test-simplified-lowering.cc |
+++ b/test/cctest/compiler/test-simplified-lowering.cc |
@@ -35,7 +35,7 @@ class SimplifiedLoweringTester : public GraphBuilderTester<ReturnType> { |
SimplifiedLoweringTester(MachineType p0 = kMachNone, |
MachineType p1 = kMachNone) |
: GraphBuilderTester<ReturnType>(p0, p1), |
- typer(this->isolate(), this->graph(), MaybeHandle<Context>()), |
+ typer(this->isolate(), this->graph(), nullptr, MaybeHandle<Context>()), |
javascript(this->zone()), |
jsgraph(this->isolate(), this->graph(), this->common(), &javascript, |
this->machine()), |
@@ -700,7 +700,7 @@ class TestingGraph : public HandleAndZoneScope, public GraphAndBuilders { |
explicit TestingGraph(Type* p0_type, Type* p1_type = Type::None(), |
Type* p2_type = Type::None()) |
: GraphAndBuilders(main_zone()), |
- typer(main_isolate(), graph(), MaybeHandle<Context>()), |
+ typer(main_isolate(), graph(), nullptr, MaybeHandle<Context>()), |
javascript(main_zone()), |
jsgraph(main_isolate(), graph(), common(), &javascript, machine()) { |
start = graph()->NewNode(common()->Start(2)); |