Index: src/full-codegen/mips64/full-codegen-mips64.cc |
diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc |
index 922eac655c0ffa65e19b69f21a8fc081485254a6..2937127ec505191fe67c8163dd2458a8836c09e8 100644 |
--- a/src/full-codegen/mips64/full-codegen-mips64.cc |
+++ b/src/full-codegen/mips64/full-codegen-mips64.cc |
@@ -1903,7 +1903,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(a4, Heap::kEmptyFixedArrayRootIndex); |