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
Presently the optimiser will registerise based on pattern of is the previous instruction a GET_LOCAL take it internal and remove that, if the next previous is a GET_LOCAL, take that too and remove it.
The issue is this catches
var a = 1;
var b = 2;
var c = 0;
c = a + b;
but not
var i = 0;
i += 1;
The text was updated successfully, but these errors were encountered:
Presently the optimiser will registerise based on pattern of is the previous instruction a GET_LOCAL take it internal and remove that, if the next previous is a GET_LOCAL, take that too and remove it.
The issue is this catches
but not
The text was updated successfully, but these errors were encountered: