| 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 09b4bc3114a0b0448139a35f7b010e5090407357..d5160a0068f687ed60dd9dc067b34fd0aed7ee6a 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()),
|
| @@ -710,7 +710,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));
|
|
|