OpenJDK / code-tools / jmh
changeset 1447:4f5fef3309dc
7902164: JMH should support GraalVM in compiler hints detection
Contributed-by: Eric Caspole <eric.caspole@oracle.com>
author | shade |
---|---|
date | Thu, 03 May 2018 15:11:12 +0200 |
parents | 25d8b2695bac |
children | 56576f4dc727 |
files | jmh-core/src/main/java/org/openjdk/jmh/runner/CompilerHints.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/jmh-core/src/main/java/org/openjdk/jmh/runner/CompilerHints.java Tue Jan 23 09:44:15 2018 +0100 +++ b/jmh-core/src/main/java/org/openjdk/jmh/runner/CompilerHints.java Thu May 03 15:11:12 2018 +0200 @@ -37,7 +37,7 @@ public static final String LIST = "/META-INF/CompilerHints"; // All OpenJDK/HotSpot VMs are supported - static final String[] HINT_COMPATIBLE_JVMS = { "OpenJDK", "HotSpot" }; + static final String[] HINT_COMPATIBLE_JVMS = { "OpenJDK", "HotSpot", "GraalVM" }; // Zing is only compatible from post 5.10.*.* releases static final String JVM_ZING = "Zing";