mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +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
|
@ -65,7 +65,7 @@ class PSOldGen : public CHeapObj {
|
|||
// and releasing the heap lock, which is held during gc's anyway. This method is not
|
||||
// safe for use at the same time as allocate_noexpand()!
|
||||
HeapWord* cas_allocate_noexpand(size_t word_size) {
|
||||
assert(SafepointSynchronize::is_at_safepoint(), "Must only be called at safepoint")
|
||||
assert(SafepointSynchronize::is_at_safepoint(), "Must only be called at safepoint");
|
||||
HeapWord* res = object_space()->cas_allocate(word_size);
|
||||
if (res != NULL) {
|
||||
_start_array.allocate_block(res);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue