Index: src/ic/arm64/ic-arm64.cc |
diff --git a/src/ic/arm64/ic-arm64.cc b/src/ic/arm64/ic-arm64.cc |
index 27f9841d4d4c29aa8bf90e7176634ce6d5f15b69..7ef87322954b6247971a1fb25ae15741aec32fe3 100644 |
--- a/src/ic/arm64/ic-arm64.cc |
+++ b/src/ic/arm64/ic-arm64.cc |
@@ -294,7 +294,7 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadWithVectorDescriptor::SlotRegister(), |
LoadWithVectorDescriptor::VectorRegister()); |
int arg_count = 4; |
- __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count, 1); |
+ __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count); |
} |
@@ -306,7 +306,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
: Runtime::kGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -325,7 +325,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); |
} |
@@ -337,7 +337,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
: Runtime::kKeyedGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -480,8 +480,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
ASM_LOCATION("KeyedStoreIC::GenerateMiss"); |
StoreIC_PushArgs(masm); |
- |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5, 1); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
} |
@@ -770,7 +769,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Tail call to the entry. |
- __ TailCallRuntime(Runtime::kStoreIC_Miss, 5, 1); |
+ __ TailCallRuntime(Runtime::kStoreIC_Miss, 5); |
} |