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 6f8069c0961562e37899fb920f24aabfc3bc2e50..3c49268dacdd87821dc4e2d40245298ba50ad1f4 100644 |
--- a/src/full-codegen/ia32/full-codegen-ia32.cc |
+++ b/src/full-codegen/ia32/full-codegen-ia32.cc |
@@ -1811,7 +1811,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); |
@@ -3095,7 +3096,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); |