Commit 76a93404 authored by danno@chromium.org's avatar danno@chromium.org

Fix removed return parameter count.

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/8496011

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9914 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 93559bb6
...@@ -7071,7 +7071,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) { ...@@ -7071,7 +7071,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
__ push(edx); __ push(edx);
__ push(edi); // Return return address so that tail call returns to right __ push(edi); // Return return address so that tail call returns to right
// place. // place.
__ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 0); __ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 1);
if (!FLAG_trace_elements_transitions) { if (!FLAG_trace_elements_transitions) {
// Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS. // Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS.
......
...@@ -5990,7 +5990,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) { ...@@ -5990,7 +5990,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
__ push(rdx); __ push(rdx);
__ push(rdi); // Return return address so that tail call returns to right __ push(rdi); // Return return address so that tail call returns to right
// place. // place.
__ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 0); __ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 1);
if (!FLAG_trace_elements_transitions) { if (!FLAG_trace_elements_transitions) {
// Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS. // Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment