Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index c0b3279ad09d9110f694ac4388316749c8598b1f..606a1cb5642a776694758210fe7d8d7b348eeab4 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -31,7 +31,6 @@ class LCodeGen; |
V(BitI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
- V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
@@ -1745,23 +1744,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, |