8151513: Remove debugging code from BarrierSet

Reviewed-by: pliden, stefank
This commit is contained in:
Bengt Rutisson 2016-03-09 14:05:50 +01:00
parent 94c75d0f00
commit cc0120e872
2 changed files with 0 additions and 8 deletions

View file

@ -78,10 +78,6 @@ void BarrierSet::write_ref_array(HeapWord* start, size_t count) {
// If compressed oops were not being used, these should already be aligned
assert(UseCompressedOops || (aligned_start == start && aligned_end == end),
"Expected heap word alignment of start and end");
#if 0
warning("Post:\t" INTPTR_FORMAT "[" SIZE_FORMAT "] : [" INTPTR_FORMAT "," INTPTR_FORMAT ")\t",
start, count, aligned_start, aligned_end);
#endif
write_ref_array_work(MemRegion(aligned_start, aligned_end));
}