Skip to content

Commit

Permalink
Fix conflict in src/hotspot/share/gc/parallel/mutableSpace.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
linade committed Jul 22, 2024
1 parent d6ea7a2 commit 9c43c18
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/hotspot/share/gc/parallel/mutableSpace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ void MutableSpace::object_iterate_impl(ObjectClosure* cl) {
// They are essentially dead, so skipping them
if (!obj->is_forwarded()) {
cl->do_object(obj);
<<<<<<< HEAD
p += obj->size();
} else {
assert(obj->forwardee() != obj, "must not be self-forwarded");
Expand All @@ -264,15 +263,6 @@ void MutableSpace::object_iterate(ObjectClosure* cl) {
object_iterate_impl<true>(cl);
} else {
object_iterate_impl<false>(cl);
=======
}
#ifdef ASSERT
else {
assert(obj->forwardee() != obj, "must not be self-forwarded");
}
#endif
p += cast_to_oop(p)->size();
>>>>>>> jdk-21.0.4+7
}
}

Expand Down

0 comments on commit 9c43c18

Please sign in to comment.