Skip to content

Commit ed1287e

Browse files
rkennkepron
authored andcommittedFeb 15, 2021
Fix merge error in ShenandoahFullGC
Reviewed-by: rpressler
1 parent ed30ad7 commit ed1287e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -956,9 +956,8 @@ void ShenandoahFullGC::compact_humongous_objects() {
956956
assert(old_start != new_start, "must be real move");
957957
assert(r->is_stw_move_allowed(), "Region " SIZE_FORMAT " should be movable", r->index());
958958

959-
Copy::aligned_conjoint_words(heap->get_region(old_start)->bottom(),
960-
heap->get_region(new_start)->bottom(),
961-
words_size);
959+
old_obj->copy_conjoint(heap->get_region(new_start)->bottom(),
960+
words_size);
962961

963962
oop new_obj = oop(heap->get_region(new_start)->bottom());
964963
new_obj->init_mark();

0 commit comments

Comments
 (0)
Please sign in to comment.