Index: src/x87/lithium-x87.h |
diff --git a/src/x87/lithium-x87.h b/src/x87/lithium-x87.h |
index e1b5c48e8cf8aaba5a346945c8beb726f4623b09..cc4620d99e6251ed8b024399a67003d019006118 100644 |
--- a/src/x87/lithium-x87.h |
+++ b/src/x87/lithium-x87.h |
@@ -156,7 +156,6 @@ class LCodeGen; |
V(StringCompareAndBranch) \ |
V(SubI) \ |
V(TaggedToI) \ |
- V(TailCallThroughMegamorphicCache) \ |
V(ThisFunction) \ |
V(ToFastProperties) \ |
V(TransitionElementsKind) \ |
@@ -486,26 +485,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; } |