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 following code makes the compiler generate malformed assembly, because when duplicating the operations, when desugaring the while-do loop their addresses don't get changed.
var i int = 0;
while if i 1 < do 1 else 0 end do
*i inc
end
The following code makes the compiler generate malformed assembly, because when duplicating the operations, when desugaring the while-do loop their addresses don't get changed.