Index: src/x87/lithium-x87.cc |
diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc |
index 009d47029ce009ef12c08ed4cb97f0ec90e9780e..0bf162c2533222c0ee0b47d507fe00f423438862 100644 |
--- a/src/x87/lithium-x87.cc |
+++ b/src/x87/lithium-x87.cc |
@@ -1171,17 +1171,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); |
} |