# HG changeset patch # User twisti # Date 1534853668 -7200 # Node ID 0cb2d4391e16ad7daedd293e4e890cacf646f22d # Parent 871581ff5ce579d27e94b7a328396779f227cfad 8209689: Compiler.isGraalEnabled should not check jvmci.Compiler property Reviewed-by: kvn diff -r 871581ff5ce5 -r 0cb2d4391e16 test/lib/sun/hotspot/code/Compiler.java --- a/test/lib/sun/hotspot/code/Compiler.java Tue Aug 21 08:38:02 2018 -0700 +++ b/test/lib/sun/hotspot/code/Compiler.java Tue Aug 21 14:14:28 2018 +0200 @@ -55,11 +55,6 @@ if (useJvmciComp == null || !useJvmciComp) { return false; } - // This check might be redundant but let's keep it for now. - String jvmciCompiler = System.getProperty("jvmci.Compiler"); - if (jvmciCompiler == null || !jvmciCompiler.equals("graal")) { - return false; - } Boolean tieredCompilation = WB.getBooleanVMFlag("TieredCompilation"); Long compLevel = WB.getIntxVMFlag("TieredStopAtLevel");