| Index: src/arm/stub-cache-arm.cc
|
| diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
|
| index f26f834e59b921d29edeba8e482360ff6cb5f45e..a20702c22c19e81a620eed6912b33ef197071460 100644
|
| --- a/src/arm/stub-cache-arm.cc
|
| +++ b/src/arm/stub-cache-arm.cc
|
| @@ -2447,8 +2447,7 @@ void CallStubCompiler::GenerateJumpFunction(Handle<Object> object,
|
| PatchImplicitReceiver(object);
|
|
|
| // Invoke the function.
|
| - __ InvokeFunction(r1, arguments(), JUMP_FUNCTION,
|
| - NullCallWrapper(), call_kind());
|
| + __ InvokeFunction(r1, arguments(), JUMP_FUNCTION, NullCallWrapper());
|
| }
|
|
|
|
|
| @@ -2583,7 +2582,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.
|
| @@ -2718,7 +2717,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.
|
|
|