Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 30c49acdcec84f9ff8d020c08e3a92d4c7572fc8..d25b4553ea62c90df7a9f9db1425db017e977033 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -94,6 +94,12 @@ namespace interpreter { |
V(LdrKeyedProperty, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kRegOut) \ |
\ |
+ /* Operations on module variables */ \ |
+ V(LdaModuleVariable, AccumulatorUse::kWrite, OperandType::kImm, \ |
+ OperandType::kUImm) \ |
+ V(StaModuleVariable, AccumulatorUse::kRead, OperandType::kImm, \ |
+ OperandType::kUImm) \ |
+ \ |
/* Propery stores (StoreIC) operations */ \ |
V(StaNamedPropertySloppy, AccumulatorUse::kRead, OperandType::kReg, \ |
OperandType::kIdx, OperandType::kIdx) \ |