mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8209689: Compiler.isGraalEnabled should not check jvmci.Compiler property
Reviewed-by: kvn
This commit is contained in:
parent
9c4f2b7294
commit
d9bb30837a
1 changed files with 0 additions and 5 deletions
|
@ -55,11 +55,6 @@ public class Compiler {
|
|||
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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue