| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 76f090ef16ccabd6d86b897d8d2d04b54793d90e..f8266e17f6fd08a682c1f841a91320c765f49872 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -124,6 +124,10 @@ namespace interpreter {
|
| V(JumpIfTrueConstant, OperandType::kIdx8) \
|
| V(JumpIfFalse, OperandType::kImm8) \
|
| V(JumpIfFalseConstant, OperandType::kIdx8) \
|
| + V(JumpIfToBooleanTrue, OperandType::kImm8) \
|
| + V(JumpIfToBooleanTrueConstant, OperandType::kIdx8) \
|
| + V(JumpIfToBooleanFalse, OperandType::kImm8) \
|
| + V(JumpIfToBooleanFalseConstant, OperandType::kIdx8) \
|
| V(Return, OperandType::kNone)
|
|
|
|
|
|
|