| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 51f9ec2e64f89e440d7ee00b2a055026956c3bd2..ba19fd7f168b1fe2f9dac1f304198b1ffdfb718f 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -248,9 +248,9 @@ namespace interpreter {
|
| V(JumpIfUndefined, OperandType::kImm8) \
|
| V(JumpIfUndefinedConstant, OperandType::kIdx8) \
|
| V(JumpIfUndefinedConstantWide, OperandType::kIdx16) \
|
| - /* TODO(mythria): Replace with opcodes that throw on a hole */ \
|
| - V(JumpIfHole, OperandType::kImm8) \
|
| V(JumpIfNotHole, OperandType::kImm8) \
|
| + V(JumpIfNotHoleConstant, OperandType::kIdx8) \
|
| + V(JumpIfNotHoleConstantWide, OperandType::kIdx16) \
|
| \
|
| /* Complex flow control For..in */ \
|
| V(ForInPrepare, OperandType::kRegOutTriple8) \
|
|
|