--- old/src/share/vm/memory/cardTableRS.cpp 2014-10-17 16:16:01.000000000 +0200 +++ new/src/share/vm/memory/cardTableRS.cpp 2014-10-17 16:16:01.000000000 +0200 @@ -406,7 +406,9 @@ void CardTableRS::verify_space(Space* s, HeapWord* gen_boundary) { // We don't need to do young-gen spaces. - if (s->end() <= gen_boundary) return; + if (s->end() <= gen_boundary) { + return; + } MemRegion used = s->used_region(); jbyte* cur_entry = byte_for(used.start());