Index: src/crankshaft/ia32/lithium-ia32.h |
diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h |
index 779410a0e0f215c231ece70b3e6e450983709501..bcd26ec4640f82a808c0125fd89b8aa74214729f 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.h |
+++ b/src/crankshaft/ia32/lithium-ia32.h |
@@ -33,7 +33,6 @@ class LCodeGen; |
V(BitI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
- V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
@@ -1722,23 +1721,6 @@ class LDeclareGlobals final : public LTemplateInstruction<0, 1, 0> { |
}; |
-class LCallJSFunction final : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LCallJSFunction(LOperand* function) { |
- inputs_[0] = function; |
- } |
- |
- LOperand* function() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function") |
- DECLARE_HYDROGEN_ACCESSOR(CallJSFunction) |
- |
- void PrintDataTo(StringStream* stream) override; |
- |
- int arity() const { return hydrogen()->argument_count() - 1; } |
-}; |
- |
- |
class LCallWithDescriptor final : public LTemplateResultInstruction<1> { |
public: |
LCallWithDescriptor(CallInterfaceDescriptor descriptor, |