From bf51705eca0509afe435248eaf8316a15886b0b3 Mon Sep 17 00:00:00 2001 From: "ivica.bogosavljevic" Date: Tue, 14 Jun 2016 02:13:39 -0700 Subject: [PATCH] MIPS64: Fix '[stubs] Remove N-argument Hydrogen-based Array constructor stub.' Port: c8ac0d8693f559795eeb3f3aaf386dde166fb2ab 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} --- src/mips64/code-stubs-mips64.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc index 2c4c100be2..d22e81e7bd 100644 --- a/src/mips64/code-stubs-mips64.cc +++ b/src/mips64/code-stubs-mips64.cc @@ -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);