Chromium Code Reviews| Index: src/interpreter/bytecodes.h |
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
| index 47dfd67c7e17be6b17bae90ecefd7a0f1b47d823..646041e8831223eb72cdf198e426fda00754a8ff 100644 |
| --- a/src/interpreter/bytecodes.h |
| +++ b/src/interpreter/bytecodes.h |
| @@ -229,6 +229,9 @@ namespace interpreter { |
| V(CreateObjectLiteral, AccumulatorUse::kNone, OperandType::kIdx, \ |
| OperandType::kIdx, OperandType::kFlag8, OperandType::kRegOut) \ |
| \ |
| + /* Block context allocation */ \ |
| + V(CreateBlockContext, AccumulatorUse::kReadWrite, OperandType::kIdx) \ |
|
rmcilroy
2016/08/15 16:01:04
nit - move this under CreateFunctionContext (no ne
Michael Starzinger
2016/08/16 08:23:41
+1
klaasb
2016/08/16 10:40:09
Done.
|
| + \ |
| /* Closure allocation */ \ |
| V(CreateClosure, AccumulatorUse::kWrite, OperandType::kIdx, \ |
| OperandType::kFlag8) \ |