| Index: src/crankshaft/x87/lithium-x87.h
|
| diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h
|
| index b50fd87d47eeb235e60899c7ec4cda24a8565caa..58a2b93bcaca8a84469fa41d58328b1e5fc0ce8f 100644
|
| --- a/src/crankshaft/x87/lithium-x87.h
|
| +++ b/src/crankshaft/x87/lithium-x87.h
|
| @@ -39,7 +39,6 @@ class LCodeGen;
|
| V(CallFunction) \
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| - V(CallStub) \
|
| V(CheckArrayBufferNotNeutered) \
|
| V(CheckInstanceType) \
|
| V(CheckMaps) \
|
| @@ -469,19 +468,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; }
|
|
|