6888953: some calls to function-like macros are missing semicolons

Reviewed-by: pbk, kvn
This commit is contained in:
John Coomes 2009-10-11 16:19:25 -07:00
parent 83f1d02a67
commit 7e76feaf42
31 changed files with 36 additions and 35 deletions

View file

@ -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);