src/hotspot/share/runtime/tieredThresholdPolicy.cpp
changeset 54983 81becad91321
parent 54736 1dc9bf9d016b
child 55206 2fe2063fe567
--- a/src/hotspot/share/runtime/tieredThresholdPolicy.cpp	Wed May 22 13:05:37 2019 +0200
+++ b/src/hotspot/share/runtime/tieredThresholdPolicy.cpp	Wed May 22 13:06:31 2019 +0200
@@ -238,7 +238,7 @@
       // Lower the compiler count such that all buffers fit into the code cache
       count = MAX2(max_count, c1_only ? 1 : 2);
     }
-    FLAG_SET_ERGO(intx, CICompilerCount, count);
+    FLAG_SET_ERGO(CICompilerCount, count);
   }
 #else
   // On 32-bit systems, the number of compiler threads is limited to 3.
@@ -250,7 +250,7 @@
   /// available to the VM and thus cause the VM to crash.
   if (FLAG_IS_DEFAULT(CICompilerCount)) {
     count = 3;
-    FLAG_SET_ERGO(intx, CICompilerCount, count);
+    FLAG_SET_ERGO(CICompilerCount, count);
   }
 #endif