Index: src/mips64/builtins-mips64.cc |
diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc |
index 07a7030505309903c906863f305e686729ed1191..b4caf8589add93d8d1c94b51091794b4cde99cf7 100644 |
--- a/src/mips64/builtins-mips64.cc |
+++ b/src/mips64/builtins-mips64.cc |
@@ -194,7 +194,7 @@ void Builtins::Generate_StringConstructor(MacroAssembler* masm) { |
__ bind(&symbol_descriptive_string); |
{ |
__ Push(a0); |
- __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1, 1); |
+ __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1); |
} |
} |
@@ -1326,7 +1326,7 @@ void Builtins::Generate_HandleFastApiCall(MacroAssembler* masm) { |
// Drop the arguments (including the receiver); |
__ Daddu(t8, t8, Operand(kPointerSize)); |
__ daddu(sp, t8, zero_reg); |
- __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0, 1); |
+ __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0); |
} |
@@ -1448,7 +1448,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { |
__ bind(&receiver_not_callable); |
{ |
__ sd(a1, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1); |
} |
} |
@@ -1557,7 +1557,7 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { |
__ bind(&target_not_callable); |
{ |
__ sd(a1, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1); |
} |
} |
@@ -1628,14 +1628,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { |
__ bind(&target_not_constructor); |
{ |
__ sd(a1, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1); |
} |
// 4c. The new.target is not a constructor, throw an appropriate TypeError. |
__ bind(&new_target_not_constructor); |
{ |
__ sd(a3, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1); |
} |
} |
@@ -1773,7 +1773,7 @@ void Builtins::Generate_Apply(MacroAssembler* masm) { |
// Check if the arguments will overflow the stack. |
__ dsll(at, a2, kPointerSizeLog2); |
__ Branch(&done, gt, a4, Operand(at)); // Signed comparison. |
- __ TailCallRuntime(Runtime::kThrowStackOverflow, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowStackOverflow, 1); |
__ bind(&done); |
} |