| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index d290342fe39a6039c7c21b50fa844b675d2876f7..a264352a4c26e3082aa35c8e265941e302c683d6 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -7387,7 +7387,7 @@ static void CreateArrayDispatchOneArgument(MacroAssembler* masm) {
|
| // Save the resulting elements kind in type info
|
| __ SmiTag(a3);
|
| __ lw(t1, FieldMemOperand(a2, Cell::kValueOffset));
|
| - __ sw(a3, FieldMemOperand(t1, AllocationSite::kPayloadOffset));
|
| + __ sw(a3, FieldMemOperand(t1, AllocationSite::kTransitionInfoOffset));
|
| __ SmiUntag(a3);
|
|
|
| __ bind(&normal_sequence);
|
| @@ -7500,7 +7500,7 @@ void ArrayConstructorStub::Generate(MacroAssembler* masm) {
|
| a3, Operand(at));
|
| }
|
|
|
| - __ lw(a3, FieldMemOperand(a3, AllocationSite::kPayloadOffset));
|
| + __ lw(a3, FieldMemOperand(a3, AllocationSite::kTransitionInfoOffset));
|
| __ SmiUntag(a3);
|
| __ jmp(&switch_ready);
|
| __ bind(&no_info);
|
|
|