| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index b54b2d91e2c5c154a20947c3e9b24050286a480b..04bcf2df2c047d55400f82e554faaa1c8beb94c7 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -2585,20 +2585,6 @@ void FixedArray::set(int index,
|
| }
|
|
|
|
|
| -void FixedArray::NoIncrementalWriteBarrierSet(FixedArray* array,
|
| - int index,
|
| - Object* value) {
|
| - DCHECK(array->map() != array->GetHeap()->fixed_cow_array_map());
|
| - DCHECK(index >= 0 && index < array->length());
|
| - int offset = kHeaderSize + index * kPointerSize;
|
| - WRITE_FIELD(array, offset, value);
|
| - Heap* heap = array->GetHeap();
|
| - if (heap->InNewSpace(value)) {
|
| - heap->RecordWrite(array->address(), offset);
|
| - }
|
| -}
|
| -
|
| -
|
| void FixedArray::NoWriteBarrierSet(FixedArray* array,
|
| int index,
|
| Object* value) {
|
|
|