MIPS64: Fix '[stubs] Remove N-argument Hydrogen-based Array constructor stub.'

Port: c8ac0d8693

Fix compliation failure on MIPS64 big-endian caused by typo
in implementation.

BUG=

Review-Url: https://codereview.chromium.org/2065903002
Cr-Commit-Position: refs/heads/master@{#36953}
This commit is contained in:
ivica.bogosavljevic 2016-06-14 02:13:39 -07:00 committed by Commit bot
parent 759baaff78
commit bf51705eca

View File

@ -25,7 +25,7 @@ namespace internal {
void ArrayNArgumentsConstructorStub::Generate(MacroAssembler* masm) {
__ dsll(t9, a0, kPointerSizeLog2);
__ Daddu(t9, sp, t9);
__ sw(a1, MemOperand(t9, 0));
__ sd(a1, MemOperand(t9, 0));
__ Push(a1);
__ Push(a2);
__ Daddu(a0, a0, 3);