| Index: src/arm64/lithium-arm64.h
|
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
|
| index c25288ea89804febb0489a6788955ef75e28a2b3..5c42940c8ab4c32df4f64f164e2b35e2107e0770 100644
|
| --- a/src/arm64/lithium-arm64.h
|
| +++ b/src/arm64/lithium-arm64.h
|
| @@ -165,7 +165,6 @@ class LCodeGen;
|
| V(SubI) \
|
| V(SubS) \
|
| V(TaggedToI) \
|
| - V(TailCallThroughMegamorphicCache) \
|
| V(ThisFunction) \
|
| V(ToFastProperties) \
|
| V(TransitionElementsKind) \
|
| @@ -319,26 +318,6 @@ class LTemplateInstruction : public LTemplateResultInstruction<R> {
|
| };
|
|
|
|
|
| -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; }
|
|
|