diff src/share/vm/memory/heapInspection.cpp @ 11034:e0c9a1d29eb4

8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
author coleenp
date Mon, 24 Jun 2013 18:55:46 -0400
parents f2110083203d
children 78bbf4d43a14
line wrap: on
line diff
--- a/src/share/vm/memory/heapInspection.cpp	Sun Jun 23 22:08:28 2013 -0700
+++ b/src/share/vm/memory/heapInspection.cpp	Mon Jun 24 18:55:46 2013 -0400
@@ -157,7 +157,6 @@
 }
 
 uint KlassInfoTable::hash(const Klass* p) {
-  assert(p->is_metadata(), "all klasses are metadata");
   return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
 }