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
Since expression can contain labels (not just blocks) we have to deal with cases like (i32.add (get_local $x) (loop ...)) which means we have to account for the temporaries used to store intermediate results. Probably easiest to convert to some form of SSA before trying to deal with labels.
The text was updated successfully, but these errors were encountered:
Since expression can contain labels (not just blocks) we have to deal with cases like
(i32.add (get_local $x) (loop ...))
which means we have to account for the temporaries used to store intermediate results. Probably easiest to convert to some form of SSA before trying to deal with labels.The text was updated successfully, but these errors were encountered: