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
The function below (in trans.rs) works fine as long as the last clause contains ret bcx;. If this is changed to simply bcx, the compiler dies on a double free when compiling the standard lib. The form of the other clauses doesn't matter -- they work with or without the ret.
The function below (in trans.rs) works fine as long as the last clause contains
ret bcx;
. If this is changed to simplybcx
, the compiler dies on a double free when compiling the standard lib. The form of the other clauses doesn't matter -- they work with or without theret
.I haven't found a smaller program that produces the same issue yet.
The text was updated successfully, but these errors were encountered: