Index: src/ic/mips64/handler-compiler-mips64.cc |
diff --git a/src/ic/mips64/handler-compiler-mips64.cc b/src/ic/mips64/handler-compiler-mips64.cc |
index 99da252b36bf40b130131e33fd3494315b44db02..eaf2d5e5e0ef67981a044c8ecbd098b082c8d06f 100644 |
--- a/src/ic/mips64/handler-compiler-mips64.cc |
+++ b/src/ic/mips64/handler-compiler-mips64.cc |
@@ -315,7 +315,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); |
} |
@@ -324,7 +324,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); |
} |
@@ -699,7 +699,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) { |
holder()); |
__ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor, |
- NamedLoadHandlerCompiler::kInterceptorArgsLength, 1); |
+ NamedLoadHandlerCompiler::kInterceptorArgsLength); |
} |
@@ -722,7 +722,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback( |
__ Push(at, 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); |
@@ -734,7 +734,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); |