mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8181823: [AOT] jaotc doesn't work with Graal
Add new flag to indicate when to calculate class fingerprint Reviewed-by: iklam, iveresov
This commit is contained in:
parent
8041519b2e
commit
dd676c3a98
4 changed files with 6 additions and 1 deletions
|
@ -1954,7 +1954,7 @@ bool InstanceKlass::supers_have_passed_fingerprint_checks() {
|
|||
bool InstanceKlass::should_store_fingerprint() {
|
||||
#if INCLUDE_AOT
|
||||
// We store the fingerprint into the InstanceKlass only in the following 2 cases:
|
||||
if (EnableJVMCI && !UseJVMCICompiler) {
|
||||
if (CalculateClassFingerprint) {
|
||||
// (1) We are running AOT to generate a shared library.
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue