Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/compiler/compilerThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void CompilerThread::set_compiler(AbstractCompiler* c) {
* we need to enable Java calls for upcalls to the jargraal compiler.
* Java calls are also needed by InterpreterRuntime when running the jargraal compiler.
*/
_can_call_java = c != nullptr && c->is_jvmci() && !UseJVMCINativeLibrary;
_can_call_java = c != nullptr && c->is_jvmci() JVMCI_ONLY(&& !UseJVMCINativeLibrary);
_compiler = c;
}

Expand Down