8330475: Remove unused default value for ModRefBarrierSet::write_ref_array_pre

Reviewed-by: gli, tschatzl
This commit is contained in:
Albert Mingkun Yang 2024-04-18 08:25:19 +00:00
parent 003e86fe38
commit 5eb2c596e2

View File

@ -61,9 +61,9 @@ public:
// Below length is the # array elements being written
virtual void write_ref_array_pre(oop* dst, size_t length,
bool dest_uninitialized = false) {}
bool dest_uninitialized) {}
virtual void write_ref_array_pre(narrowOop* dst, size_t length,
bool dest_uninitialized = false) {}
bool dest_uninitialized) {}
// Below count is the # array elements being written, starting
// at the address "start", which may not necessarily be HeapWord-aligned
inline void write_ref_array(HeapWord* start, size_t count);