Index: src/crankshaft/x64/lithium-x64.h |
diff --git a/src/crankshaft/x64/lithium-x64.h b/src/crankshaft/x64/lithium-x64.h |
index 406159b1ff34b0086c96fc839e8c3a638f812ac0..bce280c3c6da60749df8ee1af94bd5d2c03445f6 100644 |
--- a/src/crankshaft/x64/lithium-x64.h |
+++ b/src/crankshaft/x64/lithium-x64.h |
@@ -31,7 +31,6 @@ class LCodeGen; |
V(Branch) \ |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
- V(CallFunction) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CheckArrayBufferNotNeutered) \ |
@@ -1790,29 +1789,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; |
- } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function") |
- DECLARE_HYDROGEN_ACCESSOR(CallFunction) |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* function() { return inputs_[1]; } |
- LOperand* temp_slot() { return temps_[0]; } |
- LOperand* temp_vector() { return temps_[1]; } |
- 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) { |