| Index: src/crankshaft/arm64/lithium-arm64.h
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.h b/src/crankshaft/arm64/lithium-arm64.h
|
| index 14fef23518668bd9722f860a4d76b56c8d94ef6c..aaa362a8eb2a44f1738244e002683da33d113100 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.h
|
| +++ b/src/crankshaft/arm64/lithium-arm64.h
|
| @@ -32,7 +32,6 @@ class LCodeGen;
|
| V(BitS) \
|
| V(BoundsCheck) \
|
| V(Branch) \
|
| - V(CallJSFunction) \
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| V(CallWithDescriptor) \
|
| @@ -800,23 +799,6 @@ class LBranch final : public LControlInstruction<1, 2> {
|
| };
|
|
|
|
|
| -class LCallJSFunction final : public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LCallJSFunction(LOperand* function) {
|
| - inputs_[0] = function;
|
| - }
|
| -
|
| - LOperand* function() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function")
|
| - DECLARE_HYDROGEN_ACCESSOR(CallJSFunction)
|
| -
|
| - 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) {
|
|
|