| Index: src/full-codegen/s390/full-codegen-s390.cc
|
| diff --git a/src/full-codegen/s390/full-codegen-s390.cc b/src/full-codegen/s390/full-codegen-s390.cc
|
| index 973363677c23be4cde40795ec33c3d23bf4a8248..b7bb97668c4681a69423d5959f216f11d9607849 100644
|
| --- a/src/full-codegen/s390/full-codegen-s390.cc
|
| +++ b/src/full-codegen/s390/full-codegen-s390.cc
|
| @@ -1825,7 +1825,8 @@ void FullCodeGenerator::EmitOperandStackDepthCheck() {
|
| void FullCodeGenerator::EmitCreateIteratorResult(bool done) {
|
| Label allocate, done_allocate;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, r2, r4, r5, &allocate, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, r2, r4, r5, &allocate,
|
| + NO_ALLOCATION_FLAGS);
|
| __ b(&done_allocate);
|
|
|
| __ bind(&allocate);
|
| @@ -3098,7 +3099,8 @@ void FullCodeGenerator::EmitCreateIterResultObject(CallRuntime* expr) {
|
|
|
| Label runtime, done;
|
|
|
| - __ Allocate(JSIteratorResult::kSize, r2, r4, r5, &runtime, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, r2, r4, r5, &runtime,
|
| + NO_ALLOCATION_FLAGS);
|
| __ LoadNativeContextSlot(Context::ITERATOR_RESULT_MAP_INDEX, r3);
|
| __ Pop(r4, r5);
|
| __ LoadRoot(r6, Heap::kEmptyFixedArrayRootIndex);
|
|
|