| Index: src/crankshaft/mips/lithium-mips.h
|
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h
|
| index 741f32ea6a765f607a7ae16b14f61c6ac1a32bbe..2927dcdc368dbf6280d0138bf72528ad9ffb496a 100644
|
| --- a/src/crankshaft/mips/lithium-mips.h
|
| +++ b/src/crankshaft/mips/lithium-mips.h
|
| @@ -35,7 +35,6 @@ class LCodeGen;
|
| V(CallFunction) \
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| - V(CallStub) \
|
| V(CheckArrayBufferNotNeutered) \
|
| V(CheckInstanceType) \
|
| V(CheckMaps) \
|
| @@ -455,19 +454,6 @@ class LParameter final : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LCallStub final : public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LCallStub(LOperand* context) {
|
| - inputs_[0] = context;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub")
|
| - DECLARE_HYDROGEN_ACCESSOR(CallStub)
|
| -};
|
| -
|
| -
|
| class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| bool HasInterestingComment(LCodeGen* gen) const override { return false; }
|
|
|