mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
6888953: some calls to function-like macros are missing semicolons
Reviewed-by: pbk, kvn
This commit is contained in:
parent
83f1d02a67
commit
7e76feaf42
31 changed files with 36 additions and 35 deletions
|
@ -517,7 +517,7 @@ void G1BlockOffsetArray::alloc_block_work2(HeapWord** threshold_, size_t* index_
|
|||
assert(blk_start != NULL && blk_end > blk_start,
|
||||
"phantom block");
|
||||
assert(blk_end > threshold, "should be past threshold");
|
||||
assert(blk_start <= threshold, "blk_start should be at or before threshold")
|
||||
assert(blk_start <= threshold, "blk_start should be at or before threshold");
|
||||
assert(pointer_delta(threshold, blk_start) <= N_words,
|
||||
"offset should be <= BlockOffsetSharedArray::N");
|
||||
assert(Universe::heap()->is_in_reserved(blk_start),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue