| Index: src/interpreter/bytecodes.h | 
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h | 
| index b691a927f7ff084428256a7f720a99cefa742a4e..954cb751970758555615371163a55bb847e715de 100644 | 
| --- a/src/interpreter/bytecodes.h | 
| +++ b/src/interpreter/bytecodes.h | 
| @@ -226,6 +226,7 @@ namespace interpreter { | 
| V(JumpIfUndefinedConstant, AccumulatorUse::kRead, OperandType::kIdx)         \ | 
| V(JumpIfTrueConstant, AccumulatorUse::kRead, OperandType::kIdx)              \ | 
| V(JumpIfFalseConstant, AccumulatorUse::kRead, OperandType::kIdx)             \ | 
| +  V(JumpIfJSReceiverConstant, AccumulatorUse::kRead, OperandType::kIdx)        \ | 
| V(JumpIfNotHoleConstant, AccumulatorUse::kRead, OperandType::kIdx)           \ | 
| /* - [Start ToBoolean jumps] */                                              \ | 
| V(JumpIfToBooleanTrueConstant, AccumulatorUse::kRead, OperandType::kIdx)     \ | 
| @@ -239,6 +240,7 @@ namespace interpreter { | 
| V(JumpIfFalse, AccumulatorUse::kRead, OperandType::kImm)                     \ | 
| V(JumpIfNull, AccumulatorUse::kRead, OperandType::kImm)                      \ | 
| V(JumpIfUndefined, AccumulatorUse::kRead, OperandType::kImm)                 \ | 
| +  V(JumpIfJSReceiver, AccumulatorUse::kRead, OperandType::kImm)                \ | 
| V(JumpIfNotHole, AccumulatorUse::kRead, OperandType::kImm)                   \ | 
| \ | 
| /* Complex flow control For..in */                                           \ | 
|  |