7199068: NPG: SharedSkipVerify is meaningless

Remove the SharedSkipVerify flag

Reviewed-by: kamg, sspitsyn, coleenp
This commit is contained in:
Harold Seigel 2012-10-10 17:04:33 -04:00 committed by Coleen Phillimore
parent 769dd50182
commit 6b158b4089
6 changed files with 9 additions and 19 deletions

View file

@ -48,7 +48,7 @@
oop* HandleArea::allocate_handle(oop obj) {
assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
assert(SharedSkipVerify || obj->is_oop(), "sanity check");
assert(obj->is_oop(), "sanity check");
return real_allocate_handle(obj);
}