| Index: src/ic/ia32/ic-ia32.cc
|
| diff --git a/src/ic/ia32/ic-ia32.cc b/src/ic/ia32/ic-ia32.cc
|
| index 65ebdda5aee421b4780d8f979dea909baf0c3efb..8410d0b97172d7758c8440041936d89926274ced 100644
|
| --- a/src/ic/ia32/ic-ia32.cc
|
| +++ b/src/ic/ia32/ic-ia32.cc
|
| @@ -673,7 +673,7 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) {
|
|
|
| // Perform tail call to the entry.
|
| int arg_count = 4;
|
| - __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count, 1);
|
| + __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count);
|
| }
|
|
|
|
|
| @@ -692,7 +692,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm,
|
| // Do tail-call to runtime routine.
|
| __ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong
|
| : Runtime::kGetProperty,
|
| - 2, 1);
|
| + 2);
|
| }
|
|
|
|
|
| @@ -704,7 +704,7 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
|
|
|
| // Perform tail call to the entry.
|
| int arg_count = 4;
|
| - __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count, 1);
|
| + __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count);
|
| }
|
|
|
|
|
| @@ -723,7 +723,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm,
|
| // Do tail-call to runtime routine.
|
| __ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong
|
| : Runtime::kKeyedGetProperty,
|
| - 2, 1);
|
| + 2);
|
| }
|
|
|
|
|
| @@ -756,7 +756,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) {
|
| StoreIC_PushArgs(masm);
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(Runtime::kStoreIC_Miss, 5, 1);
|
| + __ TailCallRuntime(Runtime::kStoreIC_Miss, 5);
|
| }
|
|
|
|
|
| @@ -798,7 +798,7 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
|
| StoreIC_PushArgs(masm);
|
|
|
| // Do tail-call to runtime routine.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5, 1);
|
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5);
|
| }
|
|
|
|
|
|
|