| Index: src/interpreter/bytecodes.cc
|
| diff --git a/src/interpreter/bytecodes.cc b/src/interpreter/bytecodes.cc
|
| index 7102e664d56d5a961d16e7ff7f13493dc9afa582..4eb6b096d4bba24f4f59ac5ee0fe9166c4977456 100644
|
| --- a/src/interpreter/bytecodes.cc
|
| +++ b/src/interpreter/bytecodes.cc
|
| @@ -161,7 +161,9 @@ OperandSize Bytecodes::SizeOfOperand(OperandType operand_type) {
|
| // static
|
| bool Bytecodes::IsJump(Bytecode bytecode) {
|
| return bytecode == Bytecode::kJump || bytecode == Bytecode::kJumpIfTrue ||
|
| - bytecode == Bytecode::kJumpIfFalse;
|
| + bytecode == Bytecode::kJumpIfFalse ||
|
| + bytecode == Bytecode::kJumpIfToBooleanTrue ||
|
| + bytecode == Bytecode::kJumpIfToBooleanFalse;
|
| }
|
|
|
|
|
|
|