Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rkennke committed Jan 17, 2024
1 parent d242cce commit 1ba72d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hotspot/share/gc/serial/serialCompressor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ class SCCompacter {
size_t live_in_block = pointer_delta(next, current);

while (live_in_block > pointer_delta(_spaces[_index]._space->end(),
compact_top)) {
compact_top)) {
// out-of-memory in this space
_spaces[_index]._compaction_top = compact_top;
_index++;
assert(_index < max_num_spaces - 1, "the last space should not be used");
_index++;
assert(_index < max_num_spaces - 1, "the last space should not be used");
compact_top = _spaces[_index]._compaction_top;
//tty->print_cr("compact-top(%u): " PTR_FORMAT, _index, p2i(compact_top));
}
Expand Down

0 comments on commit 1ba72d9

Please sign in to comment.