| Index: src/compiler/change-lowering-unittest.cc
|
| diff --git a/src/compiler/change-lowering-unittest.cc b/src/compiler/change-lowering-unittest.cc
|
| index 197847655b49795078b8a148db2f02db6b20ca69..9d563318e47f2e409f66fc93ad18c8e09e309227 100644
|
| --- a/src/compiler/change-lowering-unittest.cc
|
| +++ b/src/compiler/change-lowering-unittest.cc
|
| @@ -74,10 +74,12 @@ class ChangeLoweringTest : public GraphTest {
|
|
|
| Reduction Reduce(Node* node) {
|
| Typer typer(zone());
|
| - JSGraph jsgraph(graph(), common(), &typer);
|
| + MachineOperatorBuilder machine(zone(), WordRepresentation());
|
| + JSOperatorBuilder javascript(zone());
|
| + JSGraph jsgraph(graph(), common(), &javascript, &typer, &machine);
|
| CompilationInfo info(isolate(), zone());
|
| Linkage linkage(&info);
|
| - MachineOperatorBuilder machine(zone(), WordRepresentation());
|
| +
|
| ChangeLowering reducer(&jsgraph, &linkage, &machine);
|
| return reducer.Reduce(node);
|
| }
|
|
|