--- old/src/share/vm/gc/shared/space.cpp 2016-12-20 16:32:12.190830309 -0500 +++ new/src/share/vm/gc/shared/space.cpp 2016-12-20 16:32:10.986761432 -0500 @@ -415,13 +415,13 @@ scan_and_forward(this, cp); } -void CompactibleSpace::adjust_pointers() { +void CompactibleSpace::adjust_pointers(MarkSweep* ms) { // Check first is there is any work to do. if (used() == 0) { return; // Nothing to do. } - scan_and_adjust_pointers(this); + scan_and_adjust_pointers(this, ms); } void CompactibleSpace::compact() {