< prev index next >

src/hotspot/share/classfile/systemDictionary.cpp

Print this page
rev 50985 : 8206977: Minor improvements of runtime code.
Reviewed-by: coleenp, lfoltan

@@ -1362,11 +1362,10 @@
       }
     }
 
     // notify a class loaded from shared object
     ClassLoadingService::notify_class_loaded(ik, true /* shared class */);
-  }
 
   ik->set_has_passed_fingerprint_check(false);
   if (UseAOT && ik->supers_have_passed_fingerprint_checks()) {
     uint64_t aot_fp = AOTLoader::get_saved_fingerprint(ik);
     uint64_t cds_fp = ik->get_stored_fingerprint();

@@ -1376,10 +1375,11 @@
     } else {
       ResourceMark rm;
       log_info(class, fingerprint)("%s :  expected = " PTR64_FORMAT " actual = " PTR64_FORMAT, ik->external_name(), aot_fp, cds_fp);
     }
   }
+  }
   return ik;
 }
 
 void SystemDictionary::clear_invoke_method_table() {
   SymbolPropertyEntry* spe = NULL;
< prev index next >