--- old/src/share/vm/runtime/compilationPolicy.cpp 2019-02-06 17:48:23.646133725 +0100 +++ new/src/share/vm/runtime/compilationPolicy.cpp 2019-02-06 17:48:23.570134298 +0100 @@ -181,7 +181,7 @@ // Example: if CICompilerCountPerCPU is true, then we get // max(log2(8)-1,1) = 2 compiler threads on an 8-way machine. // May help big-app startup time. - _compiler_count = MAX2(log2_intptr(os::active_processor_count())-1,1); + _compiler_count = MAX2(log2_int(os::active_processor_count())-1,1); FLAG_SET_ERGO(intx, CICompilerCount, _compiler_count); } else { _compiler_count = CICompilerCount;