| Index: src/crankshaft/ppc/lithium-ppc.h
|
| diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h
|
| index 0dfde053b7d65d54374fd7bb780b7d60a03371f2..ac27639a973ca437d08e9e109b99528035710613 100644
|
| --- a/src/crankshaft/ppc/lithium-ppc.h
|
| +++ b/src/crankshaft/ppc/lithium-ppc.h
|
| @@ -31,7 +31,6 @@ class LCodeGen;
|
| V(Branch) \
|
| V(CallJSFunction) \
|
| V(CallWithDescriptor) \
|
| - V(CallFunction) \
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| V(CheckArrayBufferNotNeutered) \
|
| @@ -1736,29 +1735,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) {
|
|
|