Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index b03d855788ff0364ffcb578bbf8575a00112ab1f..0287a9a616f4599746a377ddfbc1d136ceb546c4 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -2178,7 +2178,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) { |
__ sw(a3, MemOperand(sp, 1 * kPointerSize)); |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1); |
} |
@@ -2397,7 +2397,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) { |
// a2 = argument count (tagged) |
__ bind(&runtime); |
__ sw(a2, MemOperand(sp, 0 * kPointerSize)); // Patch argument count. |
- __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1); |
} |
@@ -2495,7 +2495,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); |
} |