Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index fbf648f0e4669dac56eb44e908127c407a63b177..fc42f084fe0aa445c85ea9dd2feeaff3f31ff9b6 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -474,23 +474,18 @@ class LCallStub FINAL : public LTemplateInstruction<1, 1, 0> { |
class LTailCallThroughMegamorphicCache FINAL |
- : public LTemplateInstruction<0, 5, 0> { |
+ : public LTemplateInstruction<0, 3, 0> { |
public: |
LTailCallThroughMegamorphicCache(LOperand* context, LOperand* receiver, |
- LOperand* name, LOperand* slot, |
- LOperand* vector) { |
+ LOperand* name) { |
inputs_[0] = context; |
inputs_[1] = receiver; |
inputs_[2] = name; |
- inputs_[3] = slot; |
- inputs_[4] = vector; |
} |
LOperand* context() { return inputs_[0]; } |
LOperand* receiver() { return inputs_[1]; } |
LOperand* name() { return inputs_[2]; } |
- LOperand* slot() { return inputs_[3]; } |
- LOperand* vector() { return inputs_[4]; } |
DECLARE_CONCRETE_INSTRUCTION(TailCallThroughMegamorphicCache, |
"tail-call-through-megamorphic-cache") |