| Index: src/arm/code-stubs-arm.cc
|
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
|
| index 5024adbe72067f77b45260f9029b6c34bbbc1e6a..033413ba775aea2894da1573fd1ac5516c1b4513 100644
|
| --- a/src/arm/code-stubs-arm.cc
|
| +++ b/src/arm/code-stubs-arm.cc
|
| @@ -2058,7 +2058,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) {
|
| __ str(r3, MemOperand(sp, 1 * kPointerSize));
|
|
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1);
|
| + __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -2262,7 +2262,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) {
|
| // r2 = argument count (tagged)
|
| __ bind(&runtime);
|
| __ str(r2, MemOperand(sp, 0 * kPointerSize)); // Patch argument count.
|
| - __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1);
|
| + __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -2356,7 +2356,7 @@ void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) {
|
|
|
| // Do the runtime call to allocate the arguments object.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenNewStrictArgumentsFast, 3, 1);
|
| + __ TailCallRuntime(Runtime::kHiddenNewStrictArguments, 3, 1);
|
| }
|
|
|
|
|
|
|