| Index: src/ic/ppc/handler-compiler-ppc.cc
|
| diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc
|
| index cb73c1725dde9cefe47e90c3254de6780c13d1b9..50f3854946a3de6b079910fc981d0b21e79d519e 100644
|
| --- a/src/ic/ppc/handler-compiler-ppc.cc
|
| +++ b/src/ic/ppc/handler-compiler-ppc.cc
|
| @@ -324,7 +324,7 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - __ TailCallRuntime(Runtime::kStoreIC_Slow, 5, 1);
|
| + __ TailCallRuntime(Runtime::kStoreIC_Slow, 5);
|
| }
|
|
|
|
|
| @@ -333,7 +333,7 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5, 1);
|
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5);
|
| }
|
|
|
|
|
| @@ -705,7 +705,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
|
| holder());
|
|
|
| __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor,
|
| - NamedLoadHandlerCompiler::kInterceptorArgsLength, 1);
|
| + NamedLoadHandlerCompiler::kInterceptorArgsLength);
|
| }
|
|
|
|
|
| @@ -729,7 +729,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| __ Push(ip, value());
|
|
|
| // Do tail-call to the runtime system.
|
| - __ TailCallRuntime(Runtime::kStoreCallbackProperty, 5, 1);
|
| + __ TailCallRuntime(Runtime::kStoreCallbackProperty, 5);
|
|
|
| // Return the generated code.
|
| return GetCode(kind(), Code::FAST, name);
|
| @@ -741,7 +741,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
| __ Push(receiver(), this->name(), value());
|
|
|
| // Do tail-call to the runtime system.
|
| - __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor, 3, 1);
|
| + __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor, 3);
|
|
|
| // Return the generated code.
|
| return GetCode(kind(), Code::FAST, name);
|
|
|