diff src/share/vm/oops/compiledICHolder.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 59c790074993
children de6a9e811145
line wrap: on
line diff
--- a/src/share/vm/oops/compiledICHolder.cpp	Sun Jun 23 22:08:28 2013 -0700
+++ b/src/share/vm/oops/compiledICHolder.cpp	Mon Jun 24 18:55:46 2013 -0400
@@ -48,8 +48,6 @@
 // Verification
 
 void CompiledICHolder::verify_on(outputStream* st) {
-  guarantee(holder_method()->is_metadata(),   "should be in metaspace");
   guarantee(holder_method()->is_method(), "should be method");
-  guarantee(holder_klass()->is_metadata(),    "should be in metaspace");
   guarantee(holder_klass()->is_klass(),   "should be klass");
 }