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
cfg_simplify: Avoid ambiguous magic number (#52111)
This code was using the sentinel value -1 as a special marker in
addition to the negative BB indices. That ambiguity was causing
`cfg_simplify!` to fail on functions that merge any BB into the first
basic block.
This change is to use `typemin(Int)` as a marker instead.
Fixes#52058
0 commit comments