| Index: src/compiler/instruction-selector.cc
 | 
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
 | 
| index b0a6fceda6b38766b060efdde852b49883220621..c996f490a10b4ab6134b0a67c1d01b95445007c9 100644
 | 
| --- a/src/compiler/instruction-selector.cc
 | 
| +++ b/src/compiler/instruction-selector.cc
 | 
| @@ -13,11 +13,13 @@ namespace v8 {
 | 
|  namespace internal {
 | 
|  namespace compiler {
 | 
|  
 | 
| -InstructionSelector::InstructionSelector(InstructionSequence* sequence,
 | 
| +InstructionSelector::InstructionSelector(Linkage* linkage,
 | 
| +                                         InstructionSequence* sequence,
 | 
|                                           Schedule* schedule,
 | 
|                                           SourcePositionTable* source_positions,
 | 
|                                           Features features)
 | 
|      : zone_(sequence->isolate()),
 | 
| +      linkage_(linkage),
 | 
|        sequence_(sequence),
 | 
|        source_positions_(source_positions),
 | 
|        features_(features),
 | 
| 
 |