| Index: src/ppc/lithium-ppc.h
|
| diff --git a/src/ppc/lithium-ppc.h b/src/ppc/lithium-ppc.h
|
| index f643886cfa573651398a7e2b282147ebbf614612..0b94645527b967f86fab59d1c389ef3448d41203 100644
|
| --- a/src/ppc/lithium-ppc.h
|
| +++ b/src/ppc/lithium-ppc.h
|
| @@ -154,7 +154,6 @@ class LCodeGen;
|
| V(SubI) \
|
| V(RSubI) \
|
| V(TaggedToI) \
|
| - V(TailCallThroughMegamorphicCache) \
|
| V(ThisFunction) \
|
| V(ToFastProperties) \
|
| V(TransitionElementsKind) \
|
| @@ -465,26 +464,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; }
|
|
|