comparison src/share/vm/memory/blockOffsetTable.cpp @ 1489:cff162798819

6888953: some calls to function-like macros are missing semicolons Reviewed-by: pbk, kvn
author jcoomes
date Sun, 11 Oct 2009 16:19:25 -0700
parents 37f87013dfd8
children c18cbe5936b8
comparison
equal deleted inserted replaced
1488:615a9d95d265 1489:cff162798819
687 assert(blk_start != NULL && blk_end > blk_start, 687 assert(blk_start != NULL && blk_end > blk_start,
688 "phantom block"); 688 "phantom block");
689 assert(blk_end > _next_offset_threshold, 689 assert(blk_end > _next_offset_threshold,
690 "should be past threshold"); 690 "should be past threshold");
691 assert(blk_start <= _next_offset_threshold, 691 assert(blk_start <= _next_offset_threshold,
692 "blk_start should be at or before threshold") 692 "blk_start should be at or before threshold");
693 assert(pointer_delta(_next_offset_threshold, blk_start) <= N_words, 693 assert(pointer_delta(_next_offset_threshold, blk_start) <= N_words,
694 "offset should be <= BlockOffsetSharedArray::N"); 694 "offset should be <= BlockOffsetSharedArray::N");
695 assert(Universe::heap()->is_in_reserved(blk_start), 695 assert(Universe::heap()->is_in_reserved(blk_start),
696 "reference must be into the heap"); 696 "reference must be into the heap");
697 assert(Universe::heap()->is_in_reserved(blk_end-1), 697 assert(Universe::heap()->is_in_reserved(blk_end-1),