| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 9d5f3923532006a2329fb6aa1257014a28f39e21..d631bd0e1b130bb3f4f721b3c4e05d58968e20a1 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -235,6 +235,8 @@ namespace interpreter {
|
| \
|
| /* Context allocation */ \
|
| V(CreateBlockContext, AccumulatorUse::kReadWrite, OperandType::kIdx) \
|
| + V(CreateCatchContext, AccumulatorUse::kReadWrite, OperandType::kReg, \
|
| + OperandType::kIdx) \
|
| /* TODO(klaasb) rename Idx or add unsigned Imm OperandType? */ \
|
| V(CreateFunctionContext, AccumulatorUse::kWrite, OperandType::kIdx) \
|
| V(CreateWithContext, AccumulatorUse::kReadWrite, OperandType::kReg) \
|
|
|