| Index: src/arm/macro-assembler-arm.h
|
| diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h
|
| index 271ef26816b93eee35fdf0615587e2787840094c..b9ccfdbc0f6175729a93528c214f366b8034da3f 100644
|
| --- a/src/arm/macro-assembler-arm.h
|
| +++ b/src/arm/macro-assembler-arm.h
|
| @@ -36,7 +36,6 @@ namespace internal {
|
| // Forward declaration.
|
| class PostCallGenerator;
|
|
|
| -
|
| // ----------------------------------------------------------------------------
|
| // Static helper functions
|
|
|
| @@ -288,7 +287,8 @@ class MacroAssembler: public Assembler {
|
| void InvokeCode(Register code,
|
| const ParameterCount& expected,
|
| const ParameterCount& actual,
|
| - InvokeFlag flag);
|
| + InvokeFlag flag,
|
| + PostCallGenerator* post_call_generator = NULL);
|
|
|
| void InvokeCode(Handle<Code> code,
|
| const ParameterCount& expected,
|
| @@ -300,7 +300,8 @@ class MacroAssembler: public Assembler {
|
| // current context to the context in the function before invoking.
|
| void InvokeFunction(Register function,
|
| const ParameterCount& actual,
|
| - InvokeFlag flag);
|
| + InvokeFlag flag,
|
| + PostCallGenerator* post_call_generator = NULL);
|
|
|
| void InvokeFunction(JSFunction* function,
|
| const ParameterCount& actual,
|
| @@ -751,7 +752,8 @@ class MacroAssembler: public Assembler {
|
| Handle<Code> code_constant,
|
| Register code_reg,
|
| Label* done,
|
| - InvokeFlag flag);
|
| + InvokeFlag flag,
|
| + PostCallGenerator* post_call_generator = NULL);
|
|
|
| // Activation support.
|
| void EnterFrame(StackFrame::Type type);
|
|
|