diff --git a/src/hotspot/share/runtime/sharedRuntime.cpp b/src/hotspot/share/runtime/sharedRuntime.cpp index a259520..90c6c9a 100644 --- a/src/hotspot/share/runtime/sharedRuntime.cpp +++ b/src/hotspot/share/runtime/sharedRuntime.cpp @@ -1395,7 +1395,7 @@ methodHandle SharedRuntime::resolve_sub_helper(JavaThread *thread, // Patching IC caches may fail if we run out if transition stubs. // We refill the ic stubs then and try again. for (;;) { - DEBUG_ONLY(ICRefillVerifier ic_refill_verifier;) + ICRefillVerifier ic_refill_verifier; bool successful = resolve_sub_helper_internal(callee_method, caller_frame, caller_nm, is_virtual, is_optimized, receiver, call_info, invoke_code, CHECK_(methodHandle())); @@ -1691,7 +1691,7 @@ methodHandle SharedRuntime::handle_ic_miss_helper(JavaThread *thread, TRAPS) { CompiledMethod* caller_nm = cb->as_compiled_method(); for (;;) { - DEBUG_ONLY(ICRefillVerifier ic_refill_verifier;) + ICRefillVerifier ic_refill_verifier; bool needs_ic_stub_refill = false; bool successful = handle_ic_miss_helper_internal(receiver, caller_nm, caller_frame, callee_method, bc, call_info, needs_ic_stub_refill, CHECK_(methodHandle())); @@ -1800,7 +1800,7 @@ methodHandle SharedRuntime::reresolve_call_site(JavaThread *thread, TRAPS) { // resolve is only done once. for (;;) { - DEBUG_ONLY(ICRefillVerifier ic_refill_verifier;) + ICRefillVerifier ic_refill_verifier; if (!clear_ic_at_addr(caller_nm, call_addr, is_static_call)) { InlineCacheBuffer::refill_ic_stubs(); } else {