aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnazarki <unknown>2019-12-25 02:53:58 +0000
committerbell-sw <liberica@bell-sw.com>2020-01-19 09:12:37 +0300
commit3d9c27964fba085177a83af136ee2b1d7b512f52 (patch)
treebd4476112ee5030ab88ff65faf8bd9589b577fce
parent0f38157f26b925f093985c5c67de3219d8446fb5 (diff)
downloadjdk8u_hotspot-3d9c27964fba085177a83af136ee2b1d7b512f52.tar.gz
8236178: Debug build failed after 8236058
Reviewed-by: sgehwolf, andrew
-rw-r--r--src/share/vm/oops/instanceKlass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/oops/instanceKlass.cpp b/src/share/vm/oops/instanceKlass.cpp
index 8f96915c5..4c973d38b 100644
--- a/src/share/vm/oops/instanceKlass.cpp
+++ b/src/share/vm/oops/instanceKlass.cpp
@@ -3605,7 +3605,7 @@ void InstanceKlass::set_init_state(ClassState state) {
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