| Index: test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| diff --git a/test/unittests/compiler/bytecode-graph-builder-unittest.cc b/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| index 2db178724d2d0d25c4429c98cddd7a9dd0a25feb..036e7b48ccf7e9957ea77bb5621e077066eaff4d 100644
|
| --- a/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| +++ b/test/unittests/compiler/bytecode-graph-builder-unittest.cc
|
| @@ -51,8 +51,8 @@ Graph* BytecodeGraphBuilderTest::GetCompletedGraph() {
|
| CommonOperatorBuilder* common = new (zone()) CommonOperatorBuilder(zone());
|
| JSOperatorBuilder* javascript = new (zone()) JSOperatorBuilder(zone());
|
| Graph* graph = new (zone()) Graph(zone());
|
| - JSGraph* jsgraph =
|
| - new (zone()) JSGraph(isolate(), graph, common, javascript, machine);
|
| + JSGraph* jsgraph = new (zone())
|
| + JSGraph(isolate(), graph, common, javascript, nullptr, machine);
|
|
|
| Handle<String> name = factory()->NewStringFromStaticChars("test");
|
| Handle<String> script = factory()->NewStringFromStaticChars("test() {}");
|
|
|