diff src/share/vm/code/debugInfo.hpp @ 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 da91efe96a93
children 6b0fd0964b87 de6a9e811145
line wrap: on
line diff
--- a/src/share/vm/code/debugInfo.hpp	Sun Jun 23 22:08:28 2013 -0700
+++ b/src/share/vm/code/debugInfo.hpp	Mon Jun 24 18:55:46 2013 -0400
@@ -274,7 +274,7 @@
   Method* read_method() {
     Method* o = (Method*)(code()->metadata_at(read_int()));
     assert(o == NULL ||
-           o->is_metadata(), "meta data only");
+           o->is_metaspace_object(), "meta data only");
     return o;
   }
   ScopeValue* read_object_value();