| 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 ea7ee7c31f393af78dec09bc4e54715cabf323d6..7d816b87172f9f61d0ef0dcbf9c442740f731870 100644 | 
| --- a/test/cctest/compiler/test-representation-change.cc | 
| +++ b/test/cctest/compiler/test-representation-change.cc | 
| @@ -10,7 +10,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; | 
| @@ -24,14 +23,12 @@ class RepresentationChangerTester : public HandleAndZoneScope, | 
| public: | 
| explicit RepresentationChangerTester(int num_parameters = 0) | 
| : GraphAndBuilders(main_zone()), | 
| -        typer_(main_zone()), | 
| -        jsgraph_(main_graph_, &main_common_, &typer_), | 
| +        jsgraph_(main_graph_, &main_common_), | 
| changer_(&jsgraph_, &main_simplified_, &main_machine_, main_isolate()) { | 
| Node* s = graph()->NewNode(common()->Start(num_parameters)); | 
| graph()->SetStart(s); | 
| } | 
|  | 
| -  Typer typer_; | 
| JSGraph jsgraph_; | 
| RepresentationChanger changer_; | 
|  | 
|  |