| Index: src/full-codegen/ia32/full-codegen-ia32.cc
|
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| index 4ef3a0984f503ad30e687fe4825888932ad3e07a..ff8977f74a20074ed687348140cb02f4d18756f4 100644
|
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
|
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| @@ -1636,7 +1636,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
| int array_index = 0;
|
| for (; array_index < length; array_index++) {
|
| Expression* subexpr = subexprs->at(array_index);
|
| - if (subexpr->IsSpread()) break;
|
| + DCHECK(!subexpr->IsSpread());
|
|
|
| // If the subexpression is a literal or a simple materialized literal it
|
| // is already set in the cloned array.
|
| @@ -1671,14 +1671,9 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
| Expression* subexpr = subexprs->at(array_index);
|
|
|
| __ Push(eax);
|
| - if (subexpr->IsSpread()) {
|
| - VisitForStackValue(subexpr->AsSpread()->expression());
|
| - __ InvokeBuiltin(Context::CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX,
|
| - CALL_FUNCTION);
|
| - } else {
|
| - VisitForStackValue(subexpr);
|
| - __ CallRuntime(Runtime::kAppendElement);
|
| - }
|
| + DCHECK(!subexpr->IsSpread());
|
| + VisitForStackValue(subexpr);
|
| + __ CallRuntime(Runtime::kAppendElement);
|
|
|
| PrepareForBailoutForId(expr->GetIdForElement(array_index), NO_REGISTERS);
|
| }
|
|
|