Chromium Code Reviews| Index: src/interpreter/bytecodes.h |
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
| index 6888ef4d6e7ce7c872f606e8c3b234bea0e41e09..51a904047277d95334f56cc382ea180734dfec3d 100644 |
| --- a/src/interpreter/bytecodes.h |
| +++ b/src/interpreter/bytecodes.h |
| @@ -121,6 +121,10 @@ namespace interpreter { |
| /* Closure allocation */ \ |
| V(CreateClosure, OperandType::kImm8) \ |
| \ |
| + /* Arguments allocation */ \ |
| + V(CreateArgumentsSloppy, OperandType::kNone) \ |
|
Michael Starzinger
2015/10/21 18:42:17
suggestion: I know we are inconsistent with the na
rmcilroy
2015/10/22 15:19:52
Good call, went with CreateUnmappedArguments and C
|
| + V(CreateArgumentsStrict, OperandType::kNone) \ |
| + \ |
| /* Control Flow */ \ |
| V(Jump, OperandType::kImm8) \ |
| V(JumpConstant, OperandType::kIdx8) \ |