| Index: src/interpreter/interpreter-assembler.cc
|
| diff --git a/src/interpreter/interpreter-assembler.cc b/src/interpreter/interpreter-assembler.cc
|
| index 4efd454ffc4f92946e42619ab9110e24449cf10e..67c5638e2942756349cf83d59a8a6e7e41cacf5d 100644
|
| --- a/src/interpreter/interpreter-assembler.cc
|
| +++ b/src/interpreter/interpreter-assembler.cc
|
| @@ -1009,9 +1009,9 @@ Node* InterpreterAssembler::DispatchToBytecodeHandler(Node* handler,
|
| Node* InterpreterAssembler::DispatchToBytecodeHandlerEntry(
|
| Node* handler_entry, Node* bytecode_offset) {
|
| InterpreterDispatchDescriptor descriptor(isolate());
|
| - Node* args[] = {GetAccumulatorUnchecked(), bytecode_offset,
|
| - BytecodeArrayTaggedPointer(), DispatchTableRawPointer()};
|
| - return TailCallBytecodeDispatch(descriptor, handler_entry, args);
|
| + return TailCallBytecodeDispatch(
|
| + descriptor, handler_entry, GetAccumulatorUnchecked(), bytecode_offset,
|
| + BytecodeArrayTaggedPointer(), DispatchTableRawPointer());
|
| }
|
|
|
| void InterpreterAssembler::DispatchWide(OperandScale operand_scale) {
|
|
|