Index: src/crankshaft/x87/lithium-x87.h |
diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h |
index 0f2813f85a0a88980ed02fc4ddce7175ac14acad..4cb751191d1bef4f4739cc2ec3c3bf215afd7a51 100644 |
--- a/src/crankshaft/x87/lithium-x87.h |
+++ b/src/crankshaft/x87/lithium-x87.h |
@@ -35,7 +35,6 @@ class LCodeGen; |
V(Branch) \ |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
- V(CallFunction) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CheckArrayBufferNotNeutered) \ |
@@ -1810,29 +1809,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) |
- |
- void PrintDataTo(StringStream* stream) override; |
- int arity() const { return hydrogen()->argument_count() - 1; } |
-}; |
- |
- |
class LCallNewArray final : public LTemplateInstruction<1, 2, 0> { |
public: |
LCallNewArray(LOperand* context, LOperand* constructor) { |