Index: src/ic/x64/handler-compiler-x64.cc |
diff --git a/src/ic/x64/handler-compiler-x64.cc b/src/ic/x64/handler-compiler-x64.cc |
index 9fa7fcc9a6d27fbe0089aab3a6f128129ae5dbdd..fcd2e4ca0b07197529944eb6fad4d31f04ded43f 100644 |
--- a/src/ic/x64/handler-compiler-x64.cc |
+++ b/src/ic/x64/handler-compiler-x64.cc |
@@ -326,7 +326,7 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kStoreIC_Slow, 5, 1); |
+ __ TailCallRuntime(Runtime::kStoreIC_Slow, 5); |
} |
@@ -335,7 +335,7 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Do tail-call to runtime routine. |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5, 1); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5); |
} |
@@ -716,7 +716,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) { |
__ PushReturnAddressFrom(scratch2()); |
__ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor, |
- NamedLoadHandlerCompiler::kInterceptorArgsLength, 1); |
+ NamedLoadHandlerCompiler::kInterceptorArgsLength); |
} |
@@ -741,7 +741,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback( |
__ PushReturnAddressFrom(scratch1()); |
// 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); |
@@ -757,7 +757,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor( |
__ PushReturnAddressFrom(scratch1()); |
// 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); |