Skip to content

Commit acd9310

Browse files
author
Doug Simon
committedAug 26, 2023
8313430: [JVMCI] fatal error: Never compilable: in JVMCI shutdown
Reviewed-by: never, kvn, shade
1 parent 8a5db6b commit acd9310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/compiler/compileBroker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ void CompileBroker::invoke_compiler_on_method(CompileTask* task) {
22252225
}
22262226
}
22272227
}
2228-
if (!task->is_success()) {
2228+
if (!task->is_success() && !JVMCI::in_shutdown()) {
22292229
handle_compile_error(thread, task, nullptr, compilable, failure_reason);
22302230
}
22312231
if (event.should_commit()) {

0 commit comments

Comments
 (0)
Please sign in to comment.