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
: test-case ( n -- )case1of10endof2of20endof3of30endof100 swap
endcase ;
The IR generated by the compiler (see below) includes some empty components. Components that consist of a single IR_NODE_CONTINUE node.
Those empty components make the code generator generate some jp, to jump between the components. This could be avoided if we implement a coalesce-ir-components optimization to remove those IR components.
Consider this word from test-case.fs:
The IR generated by the compiler (see below) includes some empty components. Components that consist of a single
IR_NODE_CONTINUE
node.Those empty components make the code generator generate some
jp,
to jump between the components. This could be avoided if we implement acoalesce-ir-components
optimization to remove those IR components.The text was updated successfully, but these errors were encountered: