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
If you have an expression like assert(x > 10), the compiler is currently not able to take advantage of this fact to optimise away the branch in e.g. if x > 10 then ....
Modify the simplifier to refine the ranges in the symbol table whenever it encounters assertions. Do it the naive way.
The text was updated successfully, but these errors were encountered:
If you have an expression like
assert(x > 10)
, the compiler is currently not able to take advantage of this fact to optimise away the branch in e.g.if x > 10 then ...
.Modify the simplifier to refine the ranges in the symbol table whenever it encounters assertions. Do it the naive way.
The text was updated successfully, but these errors were encountered: