The Deoptimization::print_statistics contains the following conditional on line 2927:
if (bc_case == BC_CASE_LIMIT && (int)bc == 0)
Since bc_case is bound by < BC_CASE_LIMIT in a for-loop, the conditional does not hold and its code will never be executed.
if (bc_case == BC_CASE_LIMIT && (int)bc == 0)
Since bc_case is bound by < BC_CASE_LIMIT in a for-loop, the conditional does not hold and its code will never be executed.