You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By adding #92531, I added a new potential source or test flakiness: seems like the order of the switch operands might depend on a SmallPtrSet, hence on memory allocation pattern.
The text was updated successfully, but these errors were encountered:
By adding https://github.com//pull/92531, I added a new potential source or test flakiness: seems like the order of the switch operands might depend on a SmallPtrSet, hence on memory allocation pattern.
The case-list of the switches generated by this pass were not
"deterministic" (based on allocation patterns).
This is because the CaseList order relied on an unordered_set order.
Using the sorted exit target list for those should solve the problem.
Fixes#94961
Signed-off-by: Nathan Gauër <[email protected]>
The case-list of the switches generated by this pass were not
"deterministic" (based on allocation patterns).
This is because the CaseList order relied on an unordered_set order.
Using the sorted exit target list for those should solve the problem.
Fixesllvm#94961
Signed-off-by: Nathan Gauër <[email protected]>
By adding #92531, I added a new potential source or test flakiness: seems like the order of the switch operands might depend on a SmallPtrSet, hence on memory allocation pattern.
The text was updated successfully, but these errors were encountered: