| Index: src/interpreter/bytecodes.h
 | 
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
 | 
| index 35f429a89309e95c96e67e365eb56e1bd1559246..884194c87c269c448c6b94d9a20d0f0863c3d83a 100644
 | 
| --- a/src/interpreter/bytecodes.h
 | 
| +++ b/src/interpreter/bytecodes.h
 | 
| @@ -248,7 +248,8 @@ namespace interpreter {
 | 
|      OperandType::kIdx, OperandType::kIdx)                                      \
 | 
|    /* TODO(klaasb) rename Idx or add unsigned Imm OperandType? */               \
 | 
|    V(CreateFunctionContext, AccumulatorUse::kWrite, OperandType::kIdx)          \
 | 
| -  V(CreateWithContext, AccumulatorUse::kReadWrite, OperandType::kReg)          \
 | 
| +  V(CreateWithContext, AccumulatorUse::kReadWrite, OperandType::kReg,          \
 | 
| +    OperandType::kIdx)                                                         \
 | 
|                                                                                 \
 | 
|    /* Arguments allocation */                                                   \
 | 
|    V(CreateMappedArguments, AccumulatorUse::kWrite)                             \
 | 
| 
 |