| Index: src/a64/stub-cache-a64.cc
|
| diff --git a/src/a64/stub-cache-a64.cc b/src/a64/stub-cache-a64.cc
|
| index 0cc37f3ed7c599c56dcba18dec74e8a575cb536a..a67df0c080b1f1c4d68cd1311da5dd6e5916efd8 100644
|
| --- a/src/a64/stub-cache-a64.cc
|
| +++ b/src/a64/stub-cache-a64.cc
|
| @@ -2488,8 +2488,7 @@ void CallStubCompiler::GenerateJumpFunction(Handle<Object> object,
|
| PatchImplicitReceiver(object);
|
|
|
| // Invoke the function.
|
| - __ InvokeFunction(function, arguments(), JUMP_FUNCTION,
|
| - NullCallWrapper(), call_kind());
|
| + __ InvokeFunction(function, arguments(), JUMP_FUNCTION, NullCallWrapper());
|
| }
|
|
|
|
|
| @@ -2617,7 +2616,7 @@ void StoreStubCompiler::GenerateStoreViaSetter(
|
| ParameterCount actual(1);
|
| ParameterCount expected(setter);
|
| __ InvokeFunction(setter, expected, actual,
|
| - CALL_FUNCTION, NullCallWrapper(), CALL_AS_METHOD);
|
| + CALL_FUNCTION, NullCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
| // the place to continue after deoptimization.
|
| @@ -2753,7 +2752,7 @@ void LoadStubCompiler::GenerateLoadViaGetter(MacroAssembler* masm,
|
| ParameterCount actual(0);
|
| ParameterCount expected(getter);
|
| __ InvokeFunction(getter, expected, actual,
|
| - CALL_FUNCTION, NullCallWrapper(), CALL_AS_METHOD);
|
| + CALL_FUNCTION, NullCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
| // the place to continue after deoptimization.
|
|
|