Index: src/crankshaft/arm64/lithium-arm64.h |
diff --git a/src/crankshaft/arm64/lithium-arm64.h b/src/crankshaft/arm64/lithium-arm64.h |
index eed2489b47f052201c42b584d6cfcb0115f80b26..383e5c33c1c53dae81dd5969e954167a2c4ed5dc 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.h |
+++ b/src/crankshaft/arm64/lithium-arm64.h |
@@ -82,7 +82,6 @@ class LCodeGen; |
V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
- V(InstanceOf) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
@@ -1378,22 +1377,6 @@ class LInnerAllocatedObject final : public LTemplateInstruction<1, 2, 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, 2> { |
public: |
LHasInPrototypeChainAndBranch(LOperand* object, LOperand* prototype, |