| Index: src/interpreter/interpreter.cc
|
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
|
| index 6b3f8103a0193b35d80d7e1ed3bda830bf1891ed..aff4d6848105d82dfe59808af4f559994afeaa9c 100644
|
| --- a/src/interpreter/interpreter.cc
|
| +++ b/src/interpreter/interpreter.cc
|
| @@ -1045,7 +1045,7 @@ void Interpreter::DoCallRuntime(InterpreterAssembler* assembler) {
|
| // |function_id| with the first argument in |first_arg| and |arg_count|
|
| // arguments in subsequent registers.
|
| void Interpreter::DoInvokeIntrinsic(InterpreterAssembler* assembler) {
|
| - Node* function_id = __ BytecodeOperandRuntimeId(0);
|
| + Node* function_id = __ BytecodeOperandIntrinsicId(0);
|
| Node* first_arg_reg = __ BytecodeOperandReg(1);
|
| Node* arg_count = __ BytecodeOperandCount(2);
|
| Node* context = __ GetContext();
|
|
|