| Index: src/interpreter/interpreter.cc
|
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
|
| index 1d12bfbc17c838bf50af90056852489f2aa7e3e0..1da8bc0380b080a0b1fe884dfd7f199bcd361a45 100644
|
| --- a/src/interpreter/interpreter.cc
|
| +++ b/src/interpreter/interpreter.cc
|
| @@ -370,9 +370,7 @@ void Interpreter::DoLdar(InterpreterAssembler* assembler) {
|
| //
|
| // Store accumulator to register <dst>.
|
| void Interpreter::DoStar(InterpreterAssembler* assembler) {
|
| - Node* reg_index = __ BytecodeOperandReg(0);
|
| - Node* accumulator = __ GetAccumulator();
|
| - __ StoreRegister(accumulator, reg_index);
|
| + __ StoreAccumulatorToRegister();
|
| __ Dispatch();
|
| }
|
|
|
|
|