Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index 8d2324f7171e7e724f94dfd1ab4b304873d82573..c0b3279ad09d9110f694ac4388316749c8598b1f 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -33,7 +33,6 @@ class LCodeGen; |
V(Branch) \ |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
- V(CallFunction) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CheckArrayBufferNotNeutered) \ |
@@ -1825,29 +1824,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) { |