| Index: src/mips/stub-cache-mips.cc
|
| diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc
|
| index cddf1e721cbe9db042e72cd62881347cd58eed60..b7948b14d63f0b666f9d8c032bd8043a0d87c350 100644
|
| --- a/src/mips/stub-cache-mips.cc
|
| +++ b/src/mips/stub-cache-mips.cc
|
| @@ -2443,8 +2443,7 @@ void CallStubCompiler::GenerateJumpFunction(Handle<Object> object,
|
| PatchImplicitReceiver(object);
|
|
|
| // Invoke the function.
|
| - __ InvokeFunction(a1, arguments(), JUMP_FUNCTION,
|
| - NullCallWrapper(), call_kind());
|
| + __ InvokeFunction(a1, arguments(), JUMP_FUNCTION, NullCallWrapper());
|
| }
|
|
|
|
|
| @@ -2581,7 +2580,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.
|
| @@ -2713,7 +2712,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.
|
|
|