| Index: src/ia32/lithium-ia32.cc
 | 
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
 | 
| index 0bda914f6d06593139dbed038d357922eacbba1f..d0ca2a847c2a40ba6e309662fcf936f33afe5816 100644
 | 
| --- a/src/ia32/lithium-ia32.cc
 | 
| +++ b/src/ia32/lithium-ia32.cc
 | 
| @@ -1153,17 +1153,10 @@ LInstruction* LChunkBuilder::DoTailCallThroughMegamorphicCache(
 | 
|        UseFixed(instr->receiver(), LoadDescriptor::ReceiverRegister());
 | 
|    LOperand* name_register =
 | 
|        UseFixed(instr->name(), LoadDescriptor::NameRegister());
 | 
| -  LOperand* slot = NULL;
 | 
| -  LOperand* vector = NULL;
 | 
| -  if (FLAG_vector_ics) {
 | 
| -    slot = UseFixed(instr->slot(), VectorLoadICDescriptor::SlotRegister());
 | 
| -    vector =
 | 
| -        UseFixed(instr->vector(), VectorLoadICDescriptor::VectorRegister());
 | 
| -  }
 | 
|  
 | 
|    // Not marked as call. It can't deoptimize, and it never returns.
 | 
|    return new (zone()) LTailCallThroughMegamorphicCache(
 | 
| -      context, receiver_register, name_register, slot, vector);
 | 
| +      context, receiver_register, name_register);
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |