Index: src/ic/arm/ic-arm.cc |
diff --git a/src/ic/arm/ic-arm.cc b/src/ic/arm/ic-arm.cc |
index 15c52f55fce12b70e5cf31f830ea6ac1642d4a06..b5b9e787cb8ee27e774cf2b9f14a49c38f88e533 100644 |
--- a/src/ic/arm/ic-arm.cc |
+++ b/src/ic/arm/ic-arm.cc |
@@ -310,7 +310,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); |
} |
@@ -324,7 +324,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
: Runtime::kGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -340,7 +340,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); |
} |
@@ -354,7 +354,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
: Runtime::kKeyedGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -472,7 +472,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5, 1); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
} |
@@ -777,7 +777,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); |
} |