| Index: src/interpreter/bytecodes.cc
|
| diff --git a/src/interpreter/bytecodes.cc b/src/interpreter/bytecodes.cc
|
| index 4f7b4a6d0b07615145f0ec4eebae96543e8eebef..7d06f29317218bd8fc4112b37c6026c2f0603737 100644
|
| --- a/src/interpreter/bytecodes.cc
|
| +++ b/src/interpreter/bytecodes.cc
|
| @@ -196,7 +196,9 @@ bool Bytecodes::IsConditionalJumpImmediate(Bytecode bytecode) {
|
| bytecode == Bytecode::kJumpIfToBooleanTrue ||
|
| bytecode == Bytecode::kJumpIfToBooleanFalse ||
|
| bytecode == Bytecode::kJumpIfNull ||
|
| - bytecode == Bytecode::kJumpIfUndefined;
|
| + bytecode == Bytecode::kJumpIfUndefined ||
|
| + bytecode == Bytecode::kJumpIfHole ||
|
| + bytecode == Bytecode::kJumpIfNotHole;
|
| }
|
|
|
|
|
|
|