| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 036ae728722958509bba0ee3bf262477dc392a6e..24d785916031cd3356af67732a382b5434d9e2ce 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -269,7 +269,8 @@ namespace interpreter {
|
| /* Complex flow control For..in */ \
|
| V(ForInPrepare, AccumulatorUse::kNone, OperandType::kReg, \
|
| OperandType::kRegOutTriple) \
|
| - V(ForInDone, AccumulatorUse::kWrite, OperandType::kReg, OperandType::kReg) \
|
| + V(ForInContinue, AccumulatorUse::kWrite, OperandType::kReg, \
|
| + OperandType::kReg) \
|
| V(ForInNext, AccumulatorUse::kWrite, OperandType::kReg, OperandType::kReg, \
|
| OperandType::kRegPair, OperandType::kIdx) \
|
| V(ForInStep, AccumulatorUse::kWrite, OperandType::kReg) \
|
|
|