-
Type:
Bug
-
Resolution: Withdrawn
-
Priority:
P2
-
None
-
Affects Version/s: 12, 13
-
Component/s: hotspot
Current testing:
bool alloc_after_mark_start = addr >= top_at_mark_start;
which is wrong, should be:
bool alloc_after_mark_start = addr > top_at_mark_start;
bool alloc_after_mark_start = addr >= top_at_mark_start;
which is wrong, should be:
bool alloc_after_mark_start = addr > top_at_mark_start;