| Index: src/x87/code-stubs-x87.cc
|
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
|
| index 981560cbca022ddafe1d5e613c0f1013b0997a02..a194780fae1a7ad06c7afe8628e6a678a2ca25aa 100644
|
| --- a/src/x87/code-stubs-x87.cc
|
| +++ b/src/x87/code-stubs-x87.cc
|
| @@ -771,7 +771,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) {
|
| __ mov(Operand(esp, 2 * kPointerSize), edx);
|
|
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1);
|
| + __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -994,7 +994,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) {
|
| __ bind(&runtime);
|
| __ pop(eax); // Remove saved parameter count.
|
| __ mov(Operand(esp, 1 * kPointerSize), ecx); // Patch argument count.
|
| - __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1);
|
| + __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1);
|
| }
|
|
|
|
|
| @@ -1091,7 +1091,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);
|
| }
|
|
|
|
|
|
|