Skip to content

Commit 20907ae

Browse files
committed
[GR-65191] The truffle-jvm gate fails on oracle-jdk24.
PullRequest: graal/21745
2 parents 7f45ae5 + e62cb72 commit 20907ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

truffle/src/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/FrameDescriptorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
public class FrameDescriptorTest {
5959

60-
private static final boolean NULL_TAGS_SUPPORTED = Runtime.version().feature() >= 24;
60+
private static final boolean NULL_TAGS_SUPPORTED = Runtime.version().feature() >= 25;
6161

6262
@BeforeClass
6363
public static void runWithWeakEncapsulationOnly() {

truffle/src/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/FrameDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public final class FrameDescriptor implements Cloneable {
7676
*/
7777
@Deprecated static final int MIXED_STATIC_MODE = NO_STATIC_MODE | ALL_STATIC_MODE;
7878

79-
private static final boolean NULL_TAGS_SUPPORTED = Runtime.version().feature() >= 24;
79+
private static final boolean NULL_TAGS_SUPPORTED = Runtime.version().feature() >= 25;
8080

8181
// Do not rename or remove. This field is read by the compiler.
8282
static final Object ILLEGAL_DEFAULT_VALUE = new Object();

0 commit comments

Comments
 (0)