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 54ffe8528837068e70f217be7c576af1b39e0a7e..0ccb517ea4fcb45e646b4dc651e7aa1c536314a0 100644 |
--- a/test/cctest/compiler/test-simplified-lowering.cc |
+++ b/test/cctest/compiler/test-simplified-lowering.cc |
@@ -38,7 +38,7 @@ class SimplifiedLoweringTester : public GraphBuilderTester<ReturnType> { |
typer(this->isolate(), this->graph()), |
javascript(this->zone()), |
jsgraph(this->isolate(), this->graph(), this->common(), &javascript, |
- this->machine()), |
+ nullptr, this->machine()), |
source_positions(jsgraph.graph()), |
lowering(&jsgraph, this->zone(), &source_positions) {} |
@@ -676,7 +676,8 @@ class TestingGraph : public HandleAndZoneScope, public GraphAndBuilders { |
: GraphAndBuilders(main_zone()), |
typer(main_isolate(), graph()), |
javascript(main_zone()), |
- jsgraph(main_isolate(), graph(), common(), &javascript, machine()) { |
+ jsgraph(main_isolate(), graph(), common(), &javascript, nullptr, |
+ machine()) { |
start = graph()->NewNode(common()->Start(2)); |
graph()->SetStart(start); |
ret = |