Index: src/arm/builtins-arm.cc |
diff --git a/src/arm/builtins-arm.cc b/src/arm/builtins-arm.cc |
index d7fc11fc3bfd84d8fe1733aed0f60409fcff068f..9331505b6025437c0aa1a7fd19faeca3219066e8 100644 |
--- a/src/arm/builtins-arm.cc |
+++ b/src/arm/builtins-arm.cc |
@@ -186,7 +186,7 @@ void Builtins::Generate_StringConstructor(MacroAssembler* masm) { |
__ bind(&symbol_descriptive_string); |
{ |
__ Push(r0); |
- __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1, 1); |
+ __ TailCallRuntime(Runtime::kSymbolDescriptiveString, 1); |
} |
} |
@@ -1322,7 +1322,7 @@ void Builtins::Generate_HandleFastApiCall(MacroAssembler* masm) { |
// Drop the arguments (including the receiver) |
__ add(r0, r0, Operand(1)); |
__ add(sp, sp, Operand(r0, LSL, kPointerSizeLog2)); |
- __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0, 1); |
+ __ TailCallRuntime(Runtime::kThrowIllegalInvocation, 0); |
} |
@@ -1448,7 +1448,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { |
__ bind(&receiver_not_callable); |
{ |
__ str(r1, MemOperand(sp, 0)); |
- __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1); |
} |
} |
@@ -1547,7 +1547,7 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { |
__ bind(&target_not_callable); |
{ |
__ str(r1, MemOperand(sp, 0)); |
- __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowApplyNonFunction, 1); |
} |
} |
@@ -1610,14 +1610,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { |
__ bind(&target_not_constructor); |
{ |
__ str(r1, MemOperand(sp, 0)); |
- __ 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); |
{ |
__ str(r3, MemOperand(sp, 0)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowCalledNonCallable, 1); |
} |
} |
@@ -1756,7 +1756,7 @@ void Builtins::Generate_Apply(MacroAssembler* masm) { |
// Check if the arguments will overflow the stack. |
__ cmp(ip, Operand(r2, LSL, kPointerSizeLog2)); |
__ b(gt, &done); // Signed comparison. |
- __ TailCallRuntime(Runtime::kThrowStackOverflow, 1, 1); |
+ __ TailCallRuntime(Runtime::kThrowStackOverflow, 1); |
__ bind(&done); |
} |