Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index bb8fe67ff8aae08505045e9c0e5b74462c1f3fae..f996e32e78c1213d3069006656ce1cfdba3ee64f 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -151,7 +151,6 @@ class LCodeGen; |
V(StringCompareAndBranch) \ |
V(SubI) \ |
V(TaggedToI) \ |
- V(TailCallThroughMegamorphicCache) \ |
V(ThisFunction) \ |
V(ToFastProperties) \ |
V(TransitionElementsKind) \ |
@@ -479,27 +478,6 @@ class LCallStub final : public LTemplateInstruction<1, 1, 0> { |
}; |
-class LTailCallThroughMegamorphicCache final |
- : public LTemplateInstruction<0, 3, 0> { |
- public: |
- explicit 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; } |