Chromium Code Reviews| Index: src/interpreter/interpreter.h |
| diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h |
| index 92e17e06bc6a33722009ab8a4e33ca59400a1565..c45526f48913a7460e2f21e545f57934bf2e7b22 100644 |
| --- a/src/interpreter/interpreter.h |
| +++ b/src/interpreter/interpreter.h |
| @@ -80,6 +80,11 @@ class Interpreter { |
| void DoBinaryOpWithImmediate(InterpreterAssembler* assembler); |
| // Generates code to perform the unary operation via |callable|. |
| + compiler::Node* BuildUnaryOp(Callable callable, |
| + InterpreterAssembler* assembler); |
|
rmcilroy
2016/07/22 09:36:36
nit move down with the other Build* functions
klaasb
2016/07/22 09:45:45
Done.
|
| + |
| + // Generates code to perform the unary operation via |callable| and stores |
| + // the result to the accumulator. |
| void DoUnaryOp(Callable callable, InterpreterAssembler* assembler); |
| // Generates code to perform the unary operation via |Generator|. |