Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index bf4b6955cb40d6f5f461a5d5f5df3bd8a4470381..92e3426df5ccb9cb1b4dc34513e260c9389cdbd4 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -152,7 +152,6 @@ class LCodeGen; |
V(StringCompareAndBranch) \ |
V(SubI) \ |
V(TaggedToI) \ |
- V(TailCallThroughMegamorphicCache) \ |
V(ThisFunction) \ |
V(ToFastProperties) \ |
V(TransitionElementsKind) \ |
@@ -472,26 +471,6 @@ class LCallStub final : public LTemplateInstruction<1, 1, 0> { |
}; |
-class LTailCallThroughMegamorphicCache final |
- : public LTemplateInstruction<0, 3, 0> { |
- public: |
- LTailCallThroughMegamorphicCache(LOperand* context, LOperand* receiver, |
- LOperand* name) { |
- inputs_[0] = context; |
- inputs_[1] = receiver; |
- inputs_[2] = name; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* receiver() { return inputs_[1]; } |
- LOperand* name() { return inputs_[2]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(TailCallThroughMegamorphicCache, |
- "tail-call-through-megamorphic-cache") |
- DECLARE_HYDROGEN_ACCESSOR(TailCallThroughMegamorphicCache) |
-}; |
- |
- |
class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> { |
public: |
bool HasInterestingComment(LCodeGen* gen) const override { return false; } |