Index: src/ic/arm64/ic-arm64.cc |
diff --git a/src/ic/arm64/ic-arm64.cc b/src/ic/arm64/ic-arm64.cc |
index 7ef87322954b6247971a1fb25ae15741aec32fe3..eb933c78ec970db33f59c876b216933814da0be3 100644 |
--- a/src/ic/arm64/ic-arm64.cc |
+++ b/src/ic/arm64/ic-arm64.cc |
@@ -293,8 +293,7 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadWithVectorDescriptor::NameRegister(), |
LoadWithVectorDescriptor::SlotRegister(), |
LoadWithVectorDescriptor::VectorRegister()); |
- int arg_count = 4; |
- __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count); |
+ __ TailCallRuntime(Runtime::kLoadIC_Miss); |
} |
@@ -305,8 +304,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
- : Runtime::kGetProperty, |
- 2); |
+ : Runtime::kGetProperty); |
} |
@@ -324,8 +322,7 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadWithVectorDescriptor::VectorRegister()); |
// Perform tail call to the entry. |
- int arg_count = 4; |
- __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count); |
+ __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss); |
} |
@@ -336,8 +333,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
- : Runtime::kKeyedGetProperty, |
- 2); |
+ : Runtime::kKeyedGetProperty); |
} |
@@ -480,7 +476,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
ASM_LOCATION("KeyedStoreIC::GenerateMiss"); |
StoreIC_PushArgs(masm); |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
@@ -769,7 +765,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Tail call to the entry. |
- __ TailCallRuntime(Runtime::kStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kStoreIC_Miss); |
} |