diff src/share/vm/runtime/handles.cpp @ 6867:bdb5f8c9978b

7199068: NPG: SharedSkipVerify is meaningless Summary: Remove the SharedSkipVerify flag Reviewed-by: kamg, sspitsyn, coleenp Contributed-by: harold.seigel@oracle.com
author coleenp
date Wed, 10 Oct 2012 17:04:33 -0400
parents da91efe96a93
children 716c64bda5ba
line wrap: on
line diff
--- a/src/share/vm/runtime/handles.cpp	Tue Oct 09 10:09:34 2012 -0700
+++ b/src/share/vm/runtime/handles.cpp	Wed Oct 10 17:04:33 2012 -0400
@@ -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);
 }