< prev index next >

src/hotspot/share/runtime/commandLineFlagConstraintsCompiler.cpp

Print this page
rev 47445 : 8171853: Remove Shark compiler

@@ -62,11 +62,11 @@
  *    'TieredStopAtLevel = CompLevel_full_optimization' (the default value). As a result,
  *    the minimum number of compiler threads is 2.
  */
 Flag::Error CICompilerCountConstraintFunc(intx value, bool verbose) {
   int min_number_of_compiler_threads = 0;
-#if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK) && !INCLUDE_JVMCI
+#if !defined(COMPILER1) && !defined(COMPILER2) && !INCLUDE_JVMCI
   // case 1
 #else
   if (!TieredCompilation || (TieredStopAtLevel < CompLevel_full_optimization)) {
     min_number_of_compiler_threads = 1; // case 2 or case 3
   } else {
< prev index next >