| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index 19b0d6bd94277f6538e6ad39874c71d16fdc4076..f34e843470294d194a115bd4a7500ca7cbf068ae 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -1351,16 +1351,6 @@
|
| all[arity - 1] = new_target;
|
| Node* value = MakeNode(op, static_cast<int>(arity), all, false);
|
| return value;
|
| -}
|
| -
|
| -void BytecodeGraphBuilder::VisitCallWithSpread() {
|
| - PrepareEagerCheckpoint();
|
| - interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(0);
|
| - size_t arg_count = bytecode_iterator().GetRegisterCountOperand(1);
|
| - const Operator* call =
|
| - javascript()->CallRuntime(Runtime::kCallWithSpread, arg_count);
|
| - Node* value = ProcessCallRuntimeArguments(call, first_arg, arg_count);
|
| - environment()->BindAccumulator(value, Environment::kAttachFrameState);
|
| }
|
|
|
| void BytecodeGraphBuilder::VisitNewWithSpread() {
|
|
|