-
Bug
-
Resolution: Fixed
-
P4
-
25
-
b13
-
generic
-
generic
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.
- links to
-
Commit(master) openjdk/jdk/1548ac4f
-
Review(master) openjdk/jdk/26744