Commit 4f23fc1 authored and committed Jun 13, 2023
1 parent 1a9edb8 commit 4f23fc1 Copy full SHA for 4f23fc1
File tree 2 files changed +1
-3
lines changed
hotspot/jtreg/serviceability/jvmti/HeapMonitor/MyPackage
lib/jdk/test/whitebox/code
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -252,10 +252,9 @@ private static boolean getCheckLines() {
252
252
253
253
VMOption enableJVMCI = bean .getVMOption ("EnableJVMCI" );
254
254
VMOption useJVMCICompiler = bean .getVMOption ("UseJVMCICompiler" );
255
- String compiler = System .getProperty ("jvmci.Compiler" );
256
255
257
256
checkLines = !(enableJVMCI .getValue ().equals ("true" )
258
- && useJVMCICompiler .getValue ().equals ("true" ) && compiler . equals ( "graal" ) );
257
+ && useJVMCICompiler .getValue ().equals ("true" ));
259
258
} catch (Exception e ) {
260
259
// NOP.
261
260
}
Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ public static boolean isJVMCIEnabled() {
63
63
* Graal is enabled if following conditions are true:
64
64
* - we are not in Interpreter mode
65
65
* - UseJVMCICompiler flag is true
66
- * - jvmci.Compiler variable is equal to 'graal'
67
66
* - TieredCompilation is not used or TieredStopAtLevel is greater than 3
68
67
* No need to check client mode because it set UseJVMCICompiler to false.
69
68
*
You can’t perform that action at this time.
0 commit comments