# HG changeset patch # User ysr # Date 1282244530 25200 # Node ID 52f2bc645da5eff8ba2cf9bdfa37d501ff469b5a # Parent effb55808a18a81aa38b33e802b7df74a726dc53 6978533: CMS: Elide BOT update asserts until 6977974 is fixed correctly Reviewed-by: jcoomes, jmasa, tonyp diff -r effb55808a18 -r 52f2bc645da5 src/share/vm/memory/blockOffsetTable.hpp --- a/src/share/vm/memory/blockOffsetTable.hpp Wed Aug 18 17:44:33 2010 -0400 +++ b/src/share/vm/memory/blockOffsetTable.hpp Thu Aug 19 12:02:10 2010 -0700 @@ -163,7 +163,8 @@ size_t i = index_for(left); const size_t end = i + num_cards; for (; i < end; i++) { - assert(!reducing || _offset_array[i] >= offset, "Not reducing"); + // Elided until CR 6977974 is fixed properly. + // assert(!reducing || _offset_array[i] >= offset, "Not reducing"); _offset_array[i] = offset; } } @@ -184,7 +185,8 @@ size_t i = left; const size_t end = i + num_cards; for (; i < end; i++) { - assert(!reducing || _offset_array[i] >= offset, "Not reducing"); + // Elided until CR 6977974 is fixed properly. + // assert(!reducing || _offset_array[i] >= offset, "Not reducing"); _offset_array[i] = offset; } }