| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index 0b551fbed5243594f9498364fb52b2448a82d55a..2073e96eebc29ec6b9f95785aace5aa6afe04bea 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -7757,7 +7757,9 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
|
| // Array literal has ElementsKind of FAST_*_DOUBLE_ELEMENTS.
|
| __ bind(&double_elements);
|
| __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
|
| - __ StoreNumberToDoubleElements(a0, a3, a1, t1, t2, t3, t5, a2,
|
| + __ StoreNumberToDoubleElements(a0, a3, a1,
|
| + // Overwrites all regs after this.
|
| + t1, t2, t3, t5, a2,
|
| &slow_elements);
|
| __ Ret(USE_DELAY_SLOT);
|
| __ mov(v0, a0);
|
|
|