| Index: src/mips/builtins-mips.cc
|
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
|
| index 8cf078f89da27aa9d794f0f460f7620117553254..aea6eaefe0457497653711059c0b67ff189636dd 100644
|
| --- a/src/mips/builtins-mips.cc
|
| +++ b/src/mips/builtins-mips.cc
|
| @@ -195,7 +195,7 @@ void Builtins::Generate_StringConstructor(MacroAssembler* masm) {
|
| __ bind(&symbol_descriptive_string);
|
| {
|
| __ Push(a0);
|
| - __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1, 1);
|
| + __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1);
|
| }
|
| }
|
|
|
| @@ -1335,7 +1335,7 @@ void Builtins::Generate_HandleFastApiCall(MacroAssembler* masm) {
|
| // Drop the arguments (including the receiver);
|
| __ Addu(t8, t8, Operand(kPointerSize));
|
| __ addu(sp, t8, zero_reg);
|
| - __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0, 1);
|
| + __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0);
|
| }
|
|
|
|
|
| @@ -1457,7 +1457,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) {
|
| __ bind(&receiver_not_callable);
|
| {
|
| __ sw(a1, MemOperand(sp));
|
| - __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1);
|
| + __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1);
|
| }
|
| }
|
|
|
| @@ -1566,7 +1566,7 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) {
|
| __ bind(&target_not_callable);
|
| {
|
| __ sw(a1, MemOperand(sp));
|
| - __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1);
|
| + __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1);
|
| }
|
| }
|
|
|
| @@ -1637,14 +1637,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) {
|
| __ bind(&target_not_constructor);
|
| {
|
| __ sw(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);
|
| {
|
| __ sw(a3, MemOperand(sp));
|
| - __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1, 1);
|
| + __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1);
|
| }
|
| }
|
|
|
| @@ -1781,7 +1781,7 @@ void Builtins::Generate_Apply(MacroAssembler* masm) {
|
| // Check if the arguments will overflow the stack.
|
| __ sll(at, a2, kPointerSizeLog2);
|
| __ Branch(&done, gt, t0, Operand(at)); // Signed comparison.
|
| - __ TailCallRuntime(Runtime::kThrowStackOverflow, 1, 1);
|
| + __ TailCallRuntime(Runtime::kThrowStackOverflow, 1);
|
| __ bind(&done);
|
| }
|
|
|
|
|