| Index: src/interpreter/interpreter.cc | 
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc | 
| index 873540cd594518e7d20840762ced52434ff8f92d..899ecef417f5e2bc09c6b481b26dcd2fc915fb23 100644 | 
| --- a/src/interpreter/interpreter.cc | 
| +++ b/src/interpreter/interpreter.cc | 
| @@ -769,7 +769,7 @@ | 
| // before the operation. 5 lsb bits from the accumulator are used as count | 
| // i.e. <src> << (accumulator & 0x1F). | 
| void Interpreter::DoShiftLeft(InterpreterAssembler* assembler) { | 
| -  DoBinaryOp(CodeFactory::ShiftLeft(isolate_), assembler); | 
| +  DoBinaryOp(Runtime::kShiftLeft, assembler); | 
| } | 
|  | 
|  | 
| @@ -780,7 +780,7 @@ | 
| // accumulator to uint32 before the operation. 5 lsb bits from the accumulator | 
| // are used as count i.e. <src> >> (accumulator & 0x1F). | 
| void Interpreter::DoShiftRight(InterpreterAssembler* assembler) { | 
| -  DoBinaryOp(CodeFactory::ShiftRight(isolate_), assembler); | 
| +  DoBinaryOp(Runtime::kShiftRight, assembler); | 
| } | 
|  | 
|  | 
| @@ -791,7 +791,7 @@ | 
| // uint32 before the operation 5 lsb bits from the accumulator are used as | 
| // count i.e. <src> << (accumulator & 0x1F). | 
| void Interpreter::DoShiftRightLogical(InterpreterAssembler* assembler) { | 
| -  DoBinaryOp(CodeFactory::ShiftRightLogical(isolate_), assembler); | 
| +  DoBinaryOp(Runtime::kShiftRightLogical, assembler); | 
| } | 
|  | 
| void Interpreter::DoCountOp(Runtime::FunctionId function_id, | 
|  |