Index: src/crankshaft/ia32/lithium-ia32.h |
diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h |
index 00c06cce13b932ee0c85cf04f29c72987c640c45..d1d5a06dc4484f58c2c424211759caa7bca13c2a 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.h |
+++ b/src/crankshaft/ia32/lithium-ia32.h |
@@ -83,7 +83,6 @@ class LCodeGen; |
V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
- V(InstanceOf) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
@@ -1140,22 +1139,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, |