| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index aca86484bd01b8a1dc372ac0fac8a175dd2b266c..b3fb7b5b1c378aac8715613e3365df81e25b41b0 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -1110,13 +1110,7 @@ void Heap::MoveElements(FixedArray* array, int dst_index, int src_index,
|
| DCHECK(array->map() != fixed_cow_array_map());
|
| Object** dst_objects = array->data_start() + dst_index;
|
| MemMove(dst_objects, array->data_start() + src_index, len * kPointerSize);
|
| - if (!InNewSpace(array)) {
|
| - for (int i = 0; i < len; i++) {
|
| - RecordWrite(array, array->OffsetOfElementAt(dst_index + i),
|
| - dst_objects[i]);
|
| - }
|
| - }
|
| - incremental_marking()->IterateBlackObject(array);
|
| + FIXED_ARRAY_WRITE_BARRIER(this, array, dst_index, src_index);
|
| }
|
|
|
|
|
|
|