| Index: src/full-codegen/x87/full-codegen-x87.cc
|
| diff --git a/src/full-codegen/x87/full-codegen-x87.cc b/src/full-codegen/x87/full-codegen-x87.cc
|
| index 384ea45508f4bc2032739c0faf05a16a73e93936..5f5314d4c46f61387f787485584c6bb1851b3278 100644
|
| --- a/src/full-codegen/x87/full-codegen-x87.cc
|
| +++ b/src/full-codegen/x87/full-codegen-x87.cc
|
| @@ -1803,7 +1803,8 @@ void FullCodeGenerator::EmitOperandStackDepthCheck() {
|
| void FullCodeGenerator::EmitCreateIteratorResult(bool done) {
|
| Label allocate, done_allocate;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, eax, ecx, edx, &allocate, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, eax, ecx, edx, &allocate,
|
| + NO_ALLOCATION_FLAGS);
|
| __ jmp(&done_allocate, Label::kNear);
|
|
|
| __ bind(&allocate);
|
| @@ -3087,7 +3088,8 @@ void FullCodeGenerator::EmitCreateIterResultObject(CallRuntime* expr) {
|
|
|
| Label runtime, done;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, eax, ecx, edx, &runtime, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, eax, ecx, edx, &runtime,
|
| + NO_ALLOCATION_FLAGS);
|
| __ mov(ebx, NativeContextOperand());
|
| __ mov(ebx, ContextOperand(ebx, Context::ITERATOR_RESULT_MAP_INDEX));
|
| __ mov(FieldOperand(eax, HeapObject::kMapOffset), ebx);
|
|
|