mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
7199068: NPG: SharedSkipVerify is meaningless
Remove the SharedSkipVerify flag Reviewed-by: kamg, sspitsyn, coleenp
This commit is contained in:
parent
769dd50182
commit
6b158b4089
6 changed files with 9 additions and 19 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue