Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index d2db6384d01a8691cee9b31538020946f5309973..5d282ec7aa9f72886e83ce2eb79adeddfa5e04ad 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -81,7 +81,6 @@ class LCodeGen; |
V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
- V(InstanceOf) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
@@ -1132,22 +1131,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) { |