src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp

changeset 2974
e8b0b0392037
parent 2314
f95d63e2154a
child 3357
441e946dc1af
     1.1 --- a/src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp	Mon Jun 20 22:03:13 2011 -0400
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1RemSet.inline.hpp	Tue Jun 21 15:23:07 2011 -0400
     1.3 @@ -65,12 +65,6 @@
     1.4  
     1.5    HeapRegion* to = _g1->heap_region_containing(obj);
     1.6    if (to != NULL && from != to) {
     1.7 -#if G1_REM_SET_LOGGING
     1.8 -    gclog_or_tty->print_cr("Adding " PTR_FORMAT " (" PTR_FORMAT ") to RS"
     1.9 -                           " for region [" PTR_FORMAT ", " PTR_FORMAT ")",
    1.10 -                           p, obj,
    1.11 -                           to->bottom(), to->end());
    1.12 -#endif
    1.13      assert(to->rem_set() != NULL, "Need per-region 'into' remsets.");
    1.14      to->rem_set()->add_reference(p, tid);
    1.15    }

mercurial