| Index: test/cctest/compiler/test-machine-operator-reducer.cc
|
| diff --git a/test/cctest/compiler/test-machine-operator-reducer.cc b/test/cctest/compiler/test-machine-operator-reducer.cc
|
| index d6928c70401af2ff0aaa9eaf69969aad1c7e709b..bcd68356e84db18c0f841d730592b7de77450293 100644
|
| --- a/test/cctest/compiler/test-machine-operator-reducer.cc
|
| +++ b/test/cctest/compiler/test-machine-operator-reducer.cc
|
| @@ -55,9 +55,8 @@ class ReducerTester : public HandleAndZoneScope {
|
| machine(main_zone()),
|
| common(main_zone()),
|
| graph(main_zone()),
|
| - javascript(main_zone()),
|
| typer(main_zone()),
|
| - jsgraph(&graph, &common, &javascript, &typer, &machine),
|
| + jsgraph(&graph, &common, &typer),
|
| maxuint32(Constant<int32_t>(kMaxUInt32)) {
|
| Node* s = graph.NewNode(common.Start(num_parameters));
|
| graph.SetStart(s);
|
| @@ -69,7 +68,6 @@ class ReducerTester : public HandleAndZoneScope {
|
| MachineOperatorBuilder machine;
|
| CommonOperatorBuilder common;
|
| Graph graph;
|
| - JSOperatorBuilder javascript;
|
| Typer typer;
|
| JSGraph jsgraph;
|
| Node* maxuint32;
|
|
|