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
I have a new workaround that solely addresses the problem in RVSDG->NumbaIR (bcinterp.py) at numba/numba@a117aae. It relies on interpreting RETURN_VALUE as non terminating.
The text was updated successfully, but these errors were encountered:
The
RETURN_VALUE
bytecode is not unified by when SCFG join returns. This leads to SCFG that semantically terminates in the middle of switches.For example:
The bytecode is:
The SCFG
Notice that both "branch" regions contain a
RETURN_VALUE
.I have two workarounds at sklam/numba@c9d3634:
Update - Aug 4
I have a new workaround that solely addresses the problem in RVSDG->NumbaIR (bcinterp.py) at numba/numba@a117aae. It relies on interpreting
RETURN_VALUE
as non terminating.The text was updated successfully, but these errors were encountered: