Index: src/ppc/macro-assembler-ppc.h |
diff --git a/src/ppc/macro-assembler-ppc.h b/src/ppc/macro-assembler-ppc.h |
index 15b51f3135864a7e840845c1606263185d9448cb..24064580874db35f1ec65bb3a82b3348e8318cbc 100644 |
--- a/src/ppc/macro-assembler-ppc.h |
+++ b/src/ppc/macro-assembler-ppc.h |
@@ -554,14 +554,15 @@ class MacroAssembler : public Assembler { |
// JavaScript invokes |
// Invoke the JavaScript function code by either calling or jumping. |
- void InvokeCode(Register code, const ParameterCount& expected, |
- const ParameterCount& actual, InvokeFlag flag, |
- const CallWrapper& call_wrapper); |
+ void InvokeCode(Register code, Register new_target, |
+ const ParameterCount& expected, const ParameterCount& actual, |
+ InvokeFlag flag, const CallWrapper& call_wrapper); |
// Invoke the JavaScript function in the given register. Changes the |
// current context to the context in the function before invoking. |
- void InvokeFunction(Register function, const ParameterCount& actual, |
- InvokeFlag flag, const CallWrapper& call_wrapper); |
+ void InvokeFunction(Register function, Register new_target, |
+ const ParameterCount& actual, InvokeFlag flag, |
+ const CallWrapper& call_wrapper); |
void InvokeFunction(Register function, const ParameterCount& expected, |
const ParameterCount& actual, InvokeFlag flag, |