Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 91304f5fb33d90072303742e903788ae25c52c3f..15dc3711f2b38b41a590981709dcf5c1cf5b2aac 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -38,8 +38,9 @@ namespace interpreter { |
V(LdaConstant, AccumulatorUse::kWrite, OperandType::kIdx) \ |
\ |
/* Globals */ \ |
- V(LdaGlobal, AccumulatorUse::kWrite, OperandType::kIdx) \ |
- V(LdaGlobalInsideTypeof, AccumulatorUse::kWrite, OperandType::kIdx) \ |
+ V(LdaGlobal, AccumulatorUse::kWrite, OperandType::kIdx, OperandType::kIdx) \ |
+ V(LdaGlobalInsideTypeof, AccumulatorUse::kWrite, OperandType::kIdx, \ |
+ OperandType::kIdx) \ |
V(StaGlobalSloppy, AccumulatorUse::kRead, OperandType::kIdx, \ |
OperandType::kIdx) \ |
V(StaGlobalStrict, AccumulatorUse::kRead, OperandType::kIdx, \ |