| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index b710ef9fdeb3b48fca01c33af1d899efb8c4923c..330262f3916491385023b7a58ae2ca3fe00165a4 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -1117,17 +1117,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);
|
| }
|
|
|
|
|
|
|