| Index: src/ic/x87/ic-x87.cc
|
| diff --git a/src/ic/x87/ic-x87.cc b/src/ic/x87/ic-x87.cc
|
| index 9433ee184a367fd27777cd296e45242aac003065..d4cc3ce80aa82314ad2e4636eb8d58f75b179546 100644
|
| --- a/src/ic/x87/ic-x87.cc
|
| +++ b/src/ic/x87/ic-x87.cc
|
| @@ -672,8 +672,7 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) {
|
| LoadIC_PushArgs(masm);
|
|
|
| // Perform tail call to the entry.
|
| - int arg_count = 4;
|
| - __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count);
|
| + __ TailCallRuntime(Runtime::kLoadIC_Miss);
|
| }
|
|
|
|
|
| @@ -691,8 +690,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm,
|
|
|
| // Do tail-call to runtime routine.
|
| __ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong
|
| - : Runtime::kGetProperty,
|
| - 2);
|
| + : Runtime::kGetProperty);
|
| }
|
|
|
|
|
| @@ -703,8 +701,7 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
|
| LoadIC_PushArgs(masm);
|
|
|
| // Perform tail call to the entry.
|
| - int arg_count = 4;
|
| - __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count);
|
| + __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss);
|
| }
|
|
|
|
|
| @@ -722,8 +719,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm,
|
|
|
| // Do tail-call to runtime routine.
|
| __ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong
|
| - : Runtime::kKeyedGetProperty,
|
| - 2);
|
| + : Runtime::kKeyedGetProperty);
|
| }
|
|
|
|
|
| @@ -756,7 +752,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) {
|
| StoreIC_PushArgs(masm);
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(Runtime::kStoreIC_Miss, 5);
|
| + __ TailCallRuntime(Runtime::kStoreIC_Miss);
|
| }
|
|
|
|
|
| @@ -798,7 +794,7 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
|
| StoreIC_PushArgs(masm);
|
|
|
| // Do tail-call to runtime routine.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5);
|
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss);
|
| }
|
|
|
|
|
|
|