Index: src/crankshaft/mips/lithium-mips.h |
diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h |
index aecb585577cae0a9cc82c26296c376b8d1e80939..ea5e79289f31d49800ecf8fda4b3108ea6fc87ae 100644 |
--- a/src/crankshaft/mips/lithium-mips.h |
+++ b/src/crankshaft/mips/lithium-mips.h |
@@ -79,7 +79,6 @@ class LCodeGen; |
V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
- V(InstanceOf) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
@@ -1114,22 +1113,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, 0> { |
public: |
LHasInPrototypeChainAndBranch(LOperand* object, LOperand* prototype) { |