| Index: src/interpreter/interpreter.cc
|
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
|
| index 161a5cfa713a93826e48715597ade4169a96aba4..167c548e62ab4eb8693224484f9aee78d4d606cd 100644
|
| --- a/src/interpreter/interpreter.cc
|
| +++ b/src/interpreter/interpreter.cc
|
| @@ -669,7 +669,7 @@ void Interpreter::DoMul(InterpreterAssembler* assembler) {
|
| //
|
| // Divide register <src> by accumulator.
|
| void Interpreter::DoDiv(InterpreterAssembler* assembler) {
|
| - DoBinaryOp(Runtime::kDivide, assembler);
|
| + DoBinaryOp(CodeFactory::Divide(isolate_), assembler);
|
| }
|
|
|
|
|
|
|