Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 57b1b1b2f3387413aeb4f645a4f0adb59422ddd0..3c5f9af2568069b776d496d4a32566d4eb705f65 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -227,6 +227,10 @@ namespace interpreter { |
V(CreateClosure, AccumulatorUse::kWrite, OperandType::kIdx, \ |
OperandType::kFlag8) \ |
\ |
+ /* Context allocation */ \ |
+ /* TODO(klaasb) rename Idx or add unsigned Imm OperandType? */ \ |
+ V(CreateFunctionContext, AccumulatorUse::kWrite, OperandType::kIdx) \ |
+ \ |
/* Arguments allocation */ \ |
V(CreateMappedArguments, AccumulatorUse::kWrite) \ |
V(CreateUnmappedArguments, AccumulatorUse::kWrite) \ |