Index: src/ic/ppc/ic-ppc.cc |
diff --git a/src/ic/ppc/ic-ppc.cc b/src/ic/ppc/ic-ppc.cc |
index e7d086be0a5b9c288b924cd1f833fbc6790be337..a7b8e8ccf2780d0f17d0fa899f58a59313c97d8b 100644 |
--- a/src/ic/ppc/ic-ppc.cc |
+++ b/src/ic/ppc/ic-ppc.cc |
@@ -319,8 +319,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); |
} |
@@ -333,8 +332,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
- : Runtime::kGetProperty, |
- 2); |
+ : Runtime::kGetProperty); |
} |
@@ -349,8 +347,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); |
} |
@@ -362,8 +359,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
- : Runtime::kKeyedGetProperty, |
- 2); |
+ : Runtime::kKeyedGetProperty); |
} |
@@ -482,7 +478,7 @@ static void StoreIC_PushArgs(MacroAssembler* masm) { |
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
- __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
@@ -786,7 +782,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Perform tail call to the entry. |
- __ TailCallRuntime(Runtime::kStoreIC_Miss, 5); |
+ __ TailCallRuntime(Runtime::kStoreIC_Miss); |
} |