| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index dc59ae17c903f3489d8a900ba65ce3b44947c983..b177deaa414c78999ae8a90efa65cea038e5795c 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -2465,9 +2465,8 @@ Object** ArrayList::Slot(int index) {
|
| return data_start() + kFirstIndex + index;
|
| }
|
|
|
| -
|
| -void ArrayList::Set(int index, Object* obj) {
|
| - FixedArray::cast(this)->set(kFirstIndex + index, obj);
|
| +void ArrayList::Set(int index, Object* obj, WriteBarrierMode mode) {
|
| + FixedArray::cast(this)->set(kFirstIndex + index, obj, mode);
|
| }
|
|
|
|
|
|
|