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