Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index deed2b0a7e958c61a4850da209a7fb02404d6cd8..2357e030113db32eb5cdae0d0cbe899870ccf1aa 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -115,7 +115,11 @@ namespace interpreter { |
\ |
/* Load-Store lookup slots */ \ |
V(LdaLookupSlot, AccumulatorUse::kWrite, OperandType::kIdx) \ |
+ V(LdaLookupContextSlot, 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(StaLookupSlotSloppy, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
V(StaLookupSlotStrict, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
\ |