| Index: src/full-codegen/mips/full-codegen-mips.cc
|
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc
|
| index 4289b7dbd3ef0a5defc7188e90f63154d83c41e0..50cf79ee29dc0e00cb0c3e801d006beb0e46bdb8 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -1902,7 +1902,8 @@ void FullCodeGenerator::EmitOperandStackDepthCheck() {
|
| void FullCodeGenerator::EmitCreateIteratorResult(bool done) {
|
| Label allocate, done_allocate;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, v0, a2, a3, &allocate, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, v0, a2, a3, &allocate,
|
| + NO_ALLOCATION_FLAGS);
|
| __ jmp(&done_allocate);
|
|
|
| __ bind(&allocate);
|
| @@ -3214,7 +3215,8 @@ void FullCodeGenerator::EmitCreateIterResultObject(CallRuntime* expr) {
|
|
|
| Label runtime, done;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, v0, a2, a3, &runtime, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, v0, a2, a3, &runtime,
|
| + NO_ALLOCATION_FLAGS);
|
| __ LoadNativeContextSlot(Context::ITERATOR_RESULT_MAP_INDEX, a1);
|
| __ Pop(a2, a3);
|
| __ LoadRoot(t0, Heap::kEmptyFixedArrayRootIndex);
|
|
|