| Index: src/compiler/pipeline.cc
 | 
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
 | 
| index 5b6cf0928a826944de355f27e2b939737f269897..72f2093328facd81a8f93f2d098c781d341b4da6 100644
 | 
| --- a/src/compiler/pipeline.cc
 | 
| +++ b/src/compiler/pipeline.cc
 | 
| @@ -259,8 +259,8 @@ Handle<Code> Pipeline::GenerateCode() {
 | 
|                                       SourcePosition::Unknown());
 | 
|        Linkage linkage(info());
 | 
|        ValueNumberingReducer vn_reducer(zone());
 | 
| -      SimplifiedOperatorReducer simple_reducer(&jsgraph, &machine);
 | 
| -      ChangeLowering lowering(&jsgraph, &linkage, &machine);
 | 
| +      SimplifiedOperatorReducer simple_reducer(&jsgraph);
 | 
| +      ChangeLowering lowering(&jsgraph, &linkage);
 | 
|        MachineOperatorReducer mach_reducer(&jsgraph);
 | 
|        GraphReducer graph_reducer(&graph);
 | 
|        // TODO(titzer): Figure out if we should run all reducers at once here.
 | 
| 
 |