| Index: src/crankshaft/x87/lithium-x87.h
|
| diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h
|
| index bea018491bd67ef6330fd3ad02ba611143443c5a..98703aecd77d53704389558f8761f945991130be 100644
|
| --- a/src/crankshaft/x87/lithium-x87.h
|
| +++ b/src/crankshaft/x87/lithium-x87.h
|
| @@ -84,7 +84,6 @@ class LCodeGen;
|
| V(HasInPrototypeChainAndBranch) \
|
| V(HasInstanceTypeAndBranch) \
|
| V(InnerAllocatedObject) \
|
| - V(InstanceOf) \
|
| V(InstructionGap) \
|
| V(Integer32ToDouble) \
|
| V(InvokeFunction) \
|
| @@ -1134,22 +1133,6 @@ class LCmpT final : public LTemplateInstruction<1, 3, 0> {
|
| };
|
|
|
|
|
| -class LInstanceOf final : public LTemplateInstruction<1, 3, 0> {
|
| - public:
|
| - LInstanceOf(LOperand* context, LOperand* left, LOperand* right) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = left;
|
| - inputs_[2] = right;
|
| - }
|
| -
|
| - LOperand* context() const { return inputs_[0]; }
|
| - LOperand* left() const { return inputs_[1]; }
|
| - LOperand* right() const { return inputs_[2]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(InstanceOf, "instance-of")
|
| -};
|
| -
|
| -
|
| class LHasInPrototypeChainAndBranch final : public LControlInstruction<2, 1> {
|
| public:
|
| LHasInPrototypeChainAndBranch(LOperand* object, LOperand* prototype,
|
|
|