src/share/vm/gc_implementation/g1/heapRegion.hpp

changeset 3292
6071e0581859
parent 3219
c6a6e936dc68
child 3296
dc467e8b2c5e
     1.1 --- a/src/share/vm/gc_implementation/g1/heapRegion.hpp	Mon Nov 21 09:24:56 2011 -0800
     1.2 +++ b/src/share/vm/gc_implementation/g1/heapRegion.hpp	Fri Nov 18 12:27:10 2011 -0800
     1.3 @@ -416,7 +416,7 @@
     1.4  
     1.5    void add_to_marked_bytes(size_t incr_bytes) {
     1.6      _next_marked_bytes = _next_marked_bytes + incr_bytes;
     1.7 -    guarantee( _next_marked_bytes <= used(), "invariant" );
     1.8 +    assert(_next_marked_bytes <= used(), "invariant" );
     1.9    }
    1.10  
    1.11    void zero_marked_bytes()      {

mercurial