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
The wasm backend prints floats by first printing the integral part and then printing the fractional part (by converting it also to an integer). The backend then reuses print_i64 to print these integers. This works for smaller floats, but fails for floats where the integral part does not fit into an i64.