Index: src/crankshaft/x64/lithium-x64.h |
diff --git a/src/crankshaft/x64/lithium-x64.h b/src/crankshaft/x64/lithium-x64.h |
index bce280c3c6da60749df8ee1af94bd5d2c03445f6..79620b700f9b93a23ca71f9c5ce244cfd9c55f86 100644 |
--- a/src/crankshaft/x64/lithium-x64.h |
+++ b/src/crankshaft/x64/lithium-x64.h |
@@ -29,7 +29,6 @@ class LCodeGen; |
V(BitI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
- V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
@@ -1714,23 +1713,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, |