Index: src/ic/mips64/ic-mips64.cc |
diff --git a/src/ic/mips64/ic-mips64.cc b/src/ic/mips64/ic-mips64.cc |
index 47e8cd59562b91022bc5487ef606d7f23ae76ef2..6e78196f6d5f87609a8dc6be76f9bfbadf5595d5 100644 |
--- a/src/ic/mips64/ic-mips64.cc |
+++ b/src/ic/mips64/ic-mips64.cc |
@@ -313,8 +313,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); |
} |
@@ -327,8 +326,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
- : Runtime::kGetProperty, |
- 2); |
+ : Runtime::kGetProperty); |
} |
@@ -343,8 +341,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); |
} |
@@ -356,8 +353,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
- : Runtime::kKeyedGetProperty, |
- 2); |
+ : Runtime::kKeyedGetProperty); |
} |
@@ -747,7 +743,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
@@ -773,7 +769,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Perform tail call to the entry. |
- __ TailCallRuntime(Runtime::kStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kStoreIC_Miss); |
} |