Index: src/crankshaft/mips/lithium-mips.h |
diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h |
index 8b36c5d055dfb71e045a9a54e2e2355e6e05d93f..0e05326f3403e8237dd9c3b681574a31320d3f3b 100644 |
--- a/src/crankshaft/mips/lithium-mips.h |
+++ b/src/crankshaft/mips/lithium-mips.h |
@@ -31,7 +31,6 @@ class LCodeGen; |
V(Branch) \ |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
- V(CallFunction) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CheckArrayBufferNotNeutered) \ |
@@ -1763,29 +1762,6 @@ class LInvokeFunction final : public LTemplateInstruction<1, 2, 0> { |
}; |
-class LCallFunction final : public LTemplateInstruction<1, 2, 2> { |
- public: |
- LCallFunction(LOperand* context, LOperand* function, LOperand* slot, |
- LOperand* vector) { |
- inputs_[0] = context; |
- inputs_[1] = function; |
- temps_[0] = slot; |
- temps_[1] = vector; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* function() { return inputs_[1]; } |
- LOperand* temp_slot() { return temps_[0]; } |
- LOperand* temp_vector() { return temps_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function") |
- DECLARE_HYDROGEN_ACCESSOR(CallFunction) |
- |
- int arity() const { return hydrogen()->argument_count() - 1; } |
- void PrintDataTo(StringStream* stream) override; |
-}; |
- |
- |
class LCallNewArray final : public LTemplateInstruction<1, 2, 0> { |
public: |
LCallNewArray(LOperand* context, LOperand* constructor) { |