| Index: src/mips/lithium-mips.cc
 | 
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
 | 
| index cbd59aa5f2a31054adb9872e56ae1520eaf17356..63170c6549704f7cfa14960d013fa6f68dc7c6c4 100644
 | 
| --- a/src/mips/lithium-mips.cc
 | 
| +++ b/src/mips/lithium-mips.cc
 | 
| @@ -1110,20 +1110,6 @@ LInstruction* LChunkBuilder::DoCallWithDescriptor(
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoTailCallThroughMegamorphicCache(
 | 
| -    HTailCallThroughMegamorphicCache* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), cp);
 | 
| -  LOperand* receiver_register =
 | 
| -      UseFixed(instr->receiver(), LoadDescriptor::ReceiverRegister());
 | 
| -  LOperand* name_register =
 | 
| -      UseFixed(instr->name(), LoadDescriptor::NameRegister());
 | 
| -
 | 
| -  // Not marked as call. It can't deoptimize, and it never returns.
 | 
| -  return new (zone()) LTailCallThroughMegamorphicCache(
 | 
| -      context, receiver_register, name_register);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoInvokeFunction(HInvokeFunction* instr) {
 | 
|    LOperand* context = UseFixed(instr->context(), cp);
 | 
|    LOperand* function = UseFixed(instr->function(), a1);
 | 
| 
 |