Skip to content

Commit b2303a0

Browse files
committed
compiler: update JVMCIVersionCheck to 26+1
1 parent 0a796bd commit b2303a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/JVMCIVersionCheck.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ public final class JVMCIVersionCheck {
5454
* default/fallback entry.
5555
*/
5656
private static final Map<String, Map<String, Version>> JVMCI_MIN_VERSIONS = Map.of(
57-
"25", Map.of(
58-
"Oracle Corporation", createLabsJDKVersion("25+26", 1),
59-
DEFAULT_VENDOR_ENTRY, createLabsJDKVersion("25+26", 1)));
57+
"26", Map.of(
58+
"Oracle Corporation", createLabsJDKVersion("26+1", 1),
59+
DEFAULT_VENDOR_ENTRY, createLabsJDKVersion("26+1", 1)));
6060
private static final int NA = 0;
6161
/**
6262
* Minimum Java release supported by Graal.
6363
*/
64-
private static final int JAVA_MIN_RELEASE = 25;
64+
private static final int JAVA_MIN_RELEASE = 26;
6565

6666
/**
6767
* Convenience factory for the current version scheme that only uses the JDK version and the

0 commit comments

Comments
 (0)