| Index: src/full-codegen/arm64/full-codegen-arm64.cc
|
| diff --git a/src/full-codegen/arm64/full-codegen-arm64.cc b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| index 7d918816ed50ea92d4cb4de05761207923880647..19db20523fe6594a547fa0940956f2b3f7a52add 100644
|
| --- a/src/full-codegen/arm64/full-codegen-arm64.cc
|
| +++ b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| @@ -3100,7 +3100,8 @@ void FullCodeGenerator::EmitCreateIterResultObject(CallRuntime* expr) {
|
| Label runtime, done;
|
|
|
| Register result = x0;
|
| - __ Allocate(JSIteratorResult::kSize, result, x10, x11, &runtime, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, result, x10, x11, &runtime,
|
| + NO_ALLOCATION_FLAGS);
|
| Register map_reg = x1;
|
| Register result_value = x2;
|
| Register boolean_done = x3;
|
| @@ -3799,7 +3800,8 @@ void FullCodeGenerator::EmitCreateIteratorResult(bool done) {
|
| // Allocate and populate an object with this form: { value: VAL, done: DONE }
|
|
|
| Register result = x0;
|
| - __ Allocate(JSIteratorResult::kSize, result, x10, x11, &allocate, TAG_OBJECT);
|
| + __ Allocate(JSIteratorResult::kSize, result, x10, x11, &allocate,
|
| + NO_ALLOCATION_FLAGS);
|
| __ B(&done_allocate);
|
|
|
| __ Bind(&allocate);
|
|
|