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
When compiling the following program, register allocation succeeds and happily allocates the cf variable to the CF register. Compilation later crashes with the unhelpful “variable already set”.
export
fn test(reg u64 x) -> reg u64 {
reg u64 r;
reg bool cf;
cf, x = x + x;
r = #set0();
r = x if cf;
return r;
}
This is a regression of the glob-array3 branch, introduced by commit d316054.
The text was updated successfully, but these errors were encountered:
When compiling the following program, register allocation succeeds and happily allocates the
cf
variable to theCF
register. Compilation later crashes with the unhelpful “variable already set”.This is a regression of the glob-array3 branch, introduced by commit d316054.
The text was updated successfully, but these errors were encountered: