Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 9f78b2be6fc9f2937469cfcc60963ab7bfb4d36d..e61d22138f18d6bda780ec9bc66e0c1ad6d5926a 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -1098,7 +1098,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) { |
__ mov(Operand(esp, 2 * kPointerSize), edx); |
__ bind(&runtime); |
- __ TailCallRuntime(Runtime::kHiddenNewArgumentsFast, 3, 1); |
+ __ TailCallRuntime(Runtime::kHiddenNewSloppyArguments, 3, 1); |
} |
@@ -1321,7 +1321,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); |
} |
@@ -1418,7 +1418,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); |
} |