Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 96e4c35d6fdad1e60e20bdc501847719f4e0b9fc..1cd9f2e264558f028c50030a33c7de60a4fce609 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -47,8 +47,12 @@ namespace interpreter { |
/* Globals */ \ |
V(LdaGlobalSloppy, OperandType::kIdx8, OperandType::kIdx8) \ |
V(LdaGlobalStrict, OperandType::kIdx8, OperandType::kIdx8) \ |
+ V(LdaGlobalInsideTypeofSloppy, OperandType::kIdx8, OperandType::kIdx8) \ |
+ V(LdaGlobalInsideTypeofStrict, OperandType::kIdx8, OperandType::kIdx8) \ |
V(LdaGlobalSloppyWide, OperandType::kIdx16, OperandType::kIdx16) \ |
V(LdaGlobalStrictWide, OperandType::kIdx16, OperandType::kIdx16) \ |
+ V(LdaGlobalInsideTypeofSloppyWide, OperandType::kIdx16, OperandType::kIdx16) \ |
+ V(LdaGlobalInsideTypeofStrictWide, OperandType::kIdx16, OperandType::kIdx16) \ |
V(StaGlobalSloppy, OperandType::kIdx8, OperandType::kIdx8) \ |
V(StaGlobalStrict, OperandType::kIdx8, OperandType::kIdx8) \ |
V(StaGlobalSloppyWide, OperandType::kIdx16, OperandType::kIdx16) \ |