hotspot/src/share/vm/memory/dump.cpp
changeset 11407 5399831730cd
parent 9172 a4e13ccafc44
child 12263 d20640f4f8fe
child 12231 6a9cfc59a18a
--- a/hotspot/src/share/vm/memory/dump.cpp	Tue Nov 29 14:44:44 2011 -0500
+++ b/hotspot/src/share/vm/memory/dump.cpp	Tue Dec 06 18:28:51 2011 -0500
@@ -1402,7 +1402,7 @@
         instanceKlass* ik = (instanceKlass*) k;
         // Link the class to cause the bytecodes to be rewritten and the
         // cpcache to be created.
-        if (ik->get_init_state() < instanceKlass::linked) {
+        if (ik->init_state() < instanceKlass::linked) {
           ik->link_class(THREAD);
           guarantee(!HAS_PENDING_EXCEPTION, "exception in class rewriting");
         }
@@ -1535,7 +1535,7 @@
         // are loaded in order that the related data structures (klass,
         // cpCache, Sting constants) are located together.
 
-        if (ik->get_init_state() < instanceKlass::linked) {
+        if (ik->init_state() < instanceKlass::linked) {
           ik->link_class(THREAD);
           guarantee(!(HAS_PENDING_EXCEPTION), "exception in class rewriting");
         }