Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 25e1d7d74b4c70993c4367a81e65a2270ecad947..00f49005f5360c1994fca1dda6ea9a4a80831025 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -2475,9 +2475,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); |
} |