Index: src/ic/ia32/handler-compiler-ia32.cc |
diff --git a/src/ic/ia32/handler-compiler-ia32.cc b/src/ic/ia32/handler-compiler-ia32.cc |
index 4beca479aea082e1341a92c11fb5f1956c481db9..523fa783d1756c3fd6e4a616449ee93748d8c331 100644 |
--- a/src/ic/ia32/handler-compiler-ia32.cc |
+++ b/src/ic/ia32/handler-compiler-ia32.cc |
@@ -323,7 +323,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); |
} |
@@ -332,7 +332,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); |
} |
@@ -725,7 +725,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) { |
__ push(scratch2()); // restore old return address |
__ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor, |
- NamedLoadHandlerCompiler::kInterceptorArgsLength, 1); |
+ NamedLoadHandlerCompiler::kInterceptorArgsLength); |
} |
@@ -750,7 +750,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback( |
__ push(scratch1()); // restore return address |
// 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); |
@@ -766,7 +766,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor( |
__ push(scratch1()); // restore return address |
// 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); |