| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 9df3da88fbb46f3764decbce109532ed61869e72..8a1008d5fda23b491011b7a168807ac5fa3ace61 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -1850,7 +1850,17 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
| __ Push(a3, a2, a1, a0);
|
| __ CallRuntime(Runtime::kHiddenCreateArrayLiteral, 4);
|
| } else {
|
| - FastCloneShallowArrayStub stub(isolate(), allocation_site_mode);
|
| + ASSERT(IsFastSmiOrObjectElementsKind(constant_elements_kind) ||
|
| + FLAG_smi_only_arrays);
|
| + FastCloneShallowArrayStub::Mode mode =
|
| + FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS;
|
| +
|
| + if (has_fast_elements) {
|
| + mode = FastCloneShallowArrayStub::CLONE_ELEMENTS;
|
| + }
|
| +
|
| + FastCloneShallowArrayStub stub(isolate(), mode, allocation_site_mode,
|
| + length);
|
| __ CallStub(&stub);
|
| }
|
|
|
|
|