Index: src/mips64/lithium-mips64.cc |
diff --git a/src/mips64/lithium-mips64.cc b/src/mips64/lithium-mips64.cc |
index 60a837e7c5eff0dfa82938f2ac30edc46719a108..0c01128d579c4f38f9f0667e7160574eb3b2769d 100644 |
--- a/src/mips64/lithium-mips64.cc |
+++ b/src/mips64/lithium-mips64.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); |
} |