| Index: test/cctest/compiler/test-representation-change.cc
|
| diff --git a/test/cctest/compiler/test-representation-change.cc b/test/cctest/compiler/test-representation-change.cc
|
| index 4195ede275c52b0270607996aeb54c25fe35bc5b..2dc30294a29cd6223cde2de2894f174c16d9667b 100644
|
| --- a/test/cctest/compiler/test-representation-change.cc
|
| +++ b/test/cctest/compiler/test-representation-change.cc
|
| @@ -11,7 +11,6 @@
|
|
|
| #include "src/compiler/node-matchers.h"
|
| #include "src/compiler/representation-change.h"
|
| -#include "src/compiler/typer.h"
|
|
|
| using namespace v8::internal;
|
| using namespace v8::internal::compiler;
|
| @@ -25,16 +24,13 @@ class RepresentationChangerTester : public HandleAndZoneScope,
|
| public:
|
| explicit RepresentationChangerTester(int num_parameters = 0)
|
| : GraphAndBuilders(main_zone()),
|
| - typer_(main_zone()),
|
| javascript_(main_zone()),
|
| - jsgraph_(main_graph_, &main_common_, &javascript_, &typer_,
|
| - &main_machine_),
|
| + jsgraph_(main_graph_, &main_common_, &javascript_, &main_machine_),
|
| changer_(&jsgraph_, &main_simplified_, main_isolate()) {
|
| Node* s = graph()->NewNode(common()->Start(num_parameters));
|
| graph()->SetStart(s);
|
| }
|
|
|
| - Typer typer_;
|
| JSOperatorBuilder javascript_;
|
| JSGraph jsgraph_;
|
| RepresentationChanger changer_;
|
|
|