Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 2357e030113db32eb5cdae0d0cbe899870ccf1aa..817c3075f26fb8048e2f79abf68a970285fe143c 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -117,9 +117,13 @@ namespace interpreter { |
V(LdaLookupSlot, AccumulatorUse::kWrite, OperandType::kIdx) \ |
V(LdaLookupContextSlot, AccumulatorUse::kWrite, OperandType::kIdx, \ |
OperandType::kIdx, OperandType::kUImm) \ |
+ V(LdaLookupGlobalSlot, AccumulatorUse::kWrite, OperandType::kIdx, \ |
+ OperandType::kIdx, OperandType::kUImm) \ |
V(LdaLookupSlotInsideTypeof, AccumulatorUse::kWrite, OperandType::kIdx) \ |
V(LdaLookupContextSlotInsideTypeof, AccumulatorUse::kWrite, \ |
OperandType::kIdx, OperandType::kIdx, OperandType::kUImm) \ |
+ V(LdaLookupGlobalSlotInsideTypeof, AccumulatorUse::kWrite, \ |
+ OperandType::kIdx, OperandType::kIdx, OperandType::kUImm) \ |
V(StaLookupSlotSloppy, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
V(StaLookupSlotStrict, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
\ |