Index: src/ic/ppc/ic-ppc.cc |
diff --git a/src/ic/ppc/ic-ppc.cc b/src/ic/ppc/ic-ppc.cc |
index c5f4a3c0a1bb0eba9078c46c93a64ce8f34fe8f3..e7d086be0a5b9c288b924cd1f833fbc6790be337 100644 |
--- a/src/ic/ppc/ic-ppc.cc |
+++ b/src/ic/ppc/ic-ppc.cc |
@@ -320,7 +320,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); |
} |
@@ -334,7 +334,7 @@ void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kGetPropertyStrong |
: Runtime::kGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -350,7 +350,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); |
} |
@@ -363,7 +363,7 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm, |
// Do tail-call to runtime routine. |
__ TailCallRuntime(is_strong(language_mode) ? Runtime::kKeyedGetPropertyStrong |
: Runtime::kKeyedGetProperty, |
- 2, 1); |
+ 2); |
} |
@@ -482,7 +482,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); |
} |
@@ -786,7 +786,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); |
} |