diff src/share/vm/oops/arrayKlass.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 6bd680e9ea35
children 71180a6e5080
line wrap: on
line diff
--- a/src/share/vm/oops/arrayKlass.cpp	Sun Jun 23 22:08:28 2013 -0700
+++ b/src/share/vm/oops/arrayKlass.cpp	Mon Jun 24 18:55:46 2013 -0400
@@ -221,8 +221,8 @@
 
 // Verification
 
-void ArrayKlass::verify_on(outputStream* st) {
-  Klass::verify_on(st);
+void ArrayKlass::verify_on(outputStream* st, bool check_dictionary) {
+  Klass::verify_on(st, check_dictionary);
 
   if (component_mirror() != NULL) {
     guarantee(component_mirror()->klass() != NULL, "should have a class");