diff -r b18c8301b8c2 -r 81becad91321 src/hotspot/share/runtime/tieredThresholdPolicy.cpp --- 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