Index: src/ic/arm/ic-arm.cc |
diff --git a/src/ic/arm/ic-arm.cc b/src/ic/arm/ic-arm.cc |
index b5b9e787cb8ee27e774cf2b9f14a49c38f88e533..f59ac074be2377e55f38df7aed8679d4d4faead7 100644 |
--- a/src/ic/arm/ic-arm.cc |
+++ b/src/ic/arm/ic-arm.cc |
@@ -309,8 +309,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); |
Camillo Bruni
2015/12/30 13:31:46
for some of the IC runtime functions I had to upda
|
+ __ TailCallRuntime(Runtime::kLoadIC_Miss); |
} |
@@ -323,8 +322,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
- : Runtime::kGetProperty, |
- 2); |
+ : Runtime::kGetProperty); |
} |
@@ -339,8 +337,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); |
} |
@@ -353,8 +350,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Perform tail call to the entry. |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
- : Runtime::kKeyedGetProperty, |
- 2); |
+ : Runtime::kKeyedGetProperty); |
} |
@@ -472,7 +468,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
@@ -777,7 +773,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Perform tail call to the entry. |
- __ TailCallRuntime(Runtime::kStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kStoreIC_Miss); |
} |