Skip to content

Commit

Permalink
8345959: Make JVM_IsStaticallyLinked JVM_LEAF
Browse files Browse the repository at this point in the history
Backport-of: 05c5678
  • Loading branch information
jianglizhou committed Jan 28, 2025
1 parent 12dca6d commit 5d61593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/prims/jvm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3299,7 +3299,7 @@ JVM_LEAF(jboolean, JVM_IsForeignLinkerSupported(void))
return ForeignGlobals::is_foreign_linker_supported() ? JNI_TRUE : JNI_FALSE;
JVM_END

JVM_ENTRY_NO_ENV(jboolean, JVM_IsStaticallyLinked(void))
JVM_LEAF(jboolean, JVM_IsStaticallyLinked(void))
return is_vm_statically_linked() ? JNI_TRUE : JNI_FALSE;
JVM_END

Expand Down

0 comments on commit 5d61593

Please sign in to comment.