src/hotspot/share/code/nmethod.cpp
changeset 54311 3fedbfdb25b6
parent 54150 5529640c5f67
child 54355 f226ab0b7f21
--- a/src/hotspot/share/code/nmethod.cpp	Wed Mar 27 08:38:05 2019 -0700
+++ b/src/hotspot/share/code/nmethod.cpp	Wed Mar 27 18:30:45 2019 +0100
@@ -1089,7 +1089,6 @@
     if (_method->code() == this) {
       _method->clear_code(); // Break a cycle
     }
-    _method = NULL;            // Clear the method of this dead nmethod
   }
 
   // Make the class unloaded - i.e., change state and notify sweeper
@@ -1109,6 +1108,9 @@
     Universe::heap()->unregister_nmethod(this);
   }
 
+  // Clear the method of this dead nmethod
+  set_method(NULL);
+
   // Log the unloading.
   log_state_change();