| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index c40c371a563007b0bb199a563694197d829f3f01..83d950a817e91e2f50c0157b501ac3e8f4fd6a56 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -155,7 +155,6 @@ class LCodeGen;
|
| V(StringCompareAndBranch) \
|
| V(SubI) \
|
| V(TaggedToI) \
|
| - V(TailCallThroughMegamorphicCache) \
|
| V(ThisFunction) \
|
| V(ToFastProperties) \
|
| V(TransitionElementsKind) \
|
| @@ -470,26 +469,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; }
|
|
|