| Index: test/unittests/compiler/js-builtin-reducer-unittest.cc
|
| diff --git a/test/unittests/compiler/js-builtin-reducer-unittest.cc b/test/unittests/compiler/js-builtin-reducer-unittest.cc
|
| index b885dbb12a11b72b395c5812fbab38c546fae80e..21bd1ba0e5652a04f885b38d95a93ade88fd7446 100644
|
| --- a/test/unittests/compiler/js-builtin-reducer-unittest.cc
|
| +++ b/test/unittests/compiler/js-builtin-reducer-unittest.cc
|
| @@ -16,15 +16,14 @@ namespace v8 {
|
| namespace internal {
|
| namespace compiler {
|
|
|
| -class JSBuiltinReducerTest : public GraphTest {
|
| +class JSBuiltinReducerTest : public TypedGraphTest {
|
| public:
|
| JSBuiltinReducerTest() : javascript_(zone()) {}
|
|
|
| protected:
|
| Reduction Reduce(Node* node) {
|
| - Typer typer(zone());
|
| MachineOperatorBuilder machine;
|
| - JSGraph jsgraph(graph(), common(), javascript(), &typer, &machine);
|
| + JSGraph jsgraph(graph(), common(), javascript(), &machine);
|
| JSBuiltinReducer reducer(&jsgraph);
|
| return reducer.Reduce(node);
|
| }
|
|
|