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
Some simplifications are possible when compiling Switch (and possibly Cond?).
In particular, one can turn br_table {0} into br 0, and br_table {0, 1, 2} into a conditional.
This could be compiled into a conditional as well:
Some simplifications are possible when compiling
Switch
(and possiblyCond
?).In particular, one can turn
br_table {0}
intobr 0
, andbr_table {0, 1, 2}
into a conditional.This could be compiled into a conditional as well:
The text was updated successfully, but these errors were encountered: