Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 05c0afe8f6bacd2ea33142eeee53d78c38762f6f..f6ad2a495cb269e77b5c47e5591bb27884b682eb 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -183,6 +183,9 @@ namespace interpreter { |
V(TestInstanceOf, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
V(TestIn, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
\ |
+ /* TestEqual with Null or Undefined */ \ |
+ V(TestUndetectable, AccumulatorUse::kWrite, OperandType::kReg) \ |
+ \ |
/* Cast operators */ \ |
V(ToName, AccumulatorUse::kRead, OperandType::kRegOut) \ |
V(ToNumber, AccumulatorUse::kRead, OperandType::kRegOut) \ |
@@ -413,6 +416,7 @@ class V8_EXPORT_PRIVATE Bytecodes final { |
case Bytecode::kTestGreaterThanOrEqual: |
case Bytecode::kTestInstanceOf: |
case Bytecode::kTestIn: |
+ case Bytecode::kTestUndetectable: |
case Bytecode::kForInContinue: |
return true; |
default: |