| Index: src/compiler/interpreter-assembler.cc
|
| diff --git a/src/compiler/interpreter-assembler.cc b/src/compiler/interpreter-assembler.cc
|
| index 691fa61db576a0b7030373df7e51da2b405b6ce9..ab35fe29857b6385d501a0f8b9020dcb06809199 100644
|
| --- a/src/compiler/interpreter-assembler.cc
|
| +++ b/src/compiler/interpreter-assembler.cc
|
| @@ -90,7 +90,7 @@ Node* InterpreterAssembler::RegisterFrameOffset(Node* index) {
|
|
|
|
|
| Node* InterpreterAssembler::BytecodeArg(int delta) {
|
| - DCHECK_LT(delta, interpreter::Bytecodes::NumberOfArguments(bytecode_));
|
| + DCHECK_LT(delta, interpreter::Bytecodes::NumberOfOperands(bytecode_));
|
| return raw_assembler_->Load(kMachUint8, BytecodePointer(),
|
| Int32Constant(1 + delta));
|
| }
|
|
|