| Index: src/x87/codegen-x87.cc
|
| diff --git a/src/x87/codegen-x87.cc b/src/x87/codegen-x87.cc
|
| index 06b6262a9b8ae2a8484be9516f8ff5ce9332b8a3..8112d11d139492233a376c36d35c9097b018e59e 100644
|
| --- a/src/x87/codegen-x87.cc
|
| +++ b/src/x87/codegen-x87.cc
|
| @@ -275,9 +275,9 @@ void ElementsTransitionGenerator::GenerateSmiToDouble(
|
| // Allocate new FixedDoubleArray.
|
| // edx: receiver
|
| // edi: length of source FixedArray (smi-tagged)
|
| + AllocationFlags flags = static_cast<AllocationFlags>(DOUBLE_ALIGNMENT);
|
| __ Allocate(FixedDoubleArray::kHeaderSize, times_8, edi,
|
| - REGISTER_VALUE_IS_SMI, eax, ebx, no_reg, &gc_required,
|
| - DOUBLE_ALIGNMENT);
|
| + REGISTER_VALUE_IS_SMI, eax, ebx, no_reg, &gc_required, flags);
|
|
|
| // eax: destination FixedDoubleArray
|
| // edi: number of elements
|
|
|