changeset 9092:2c1e9fab6964 jdk8u242-b05

8236178: Debug build failed after 8236058 Reviewed-by: sgehwolf, andrew
author snazarki
date Wed, 25 Dec 2019 02:53:58 +0000
parents 5bd0e0bcb152
children 8c0fa90986a6
files src/share/vm/oops/instanceKlass.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/oops/instanceKlass.cpp	Thu Dec 19 19:35:49 2019 +0000
+++ b/src/share/vm/oops/instanceKlass.cpp	Wed Dec 25 02:53:58 2019 +0000
@@ -3605,7 +3605,7 @@
   bool good_state = is_shared() ? (_init_state <= state)
                                                : (_init_state < state);
   assert(good_state || state == allocated, "illegal state transition");
-  set_initialization_state_and_notify_implassert(_init_thread == NULL, "should be cleared before state change");
+  assert(_init_thread == NULL, "should be cleared before state change");
   _init_state = (u1)state;
 }
 #endif