Index: src/interpreter/bytecodes.cc |
diff --git a/src/interpreter/bytecodes.cc b/src/interpreter/bytecodes.cc |
index c17e95878adb6734577db6716db56b12376cc08b..5b4dc21bb08831f2133b27a5b04d33c24db11bd2 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; |
} |