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
Fix a bug in the bitwise encoding of float to int casting.
This affects cases when a floating-point number is cast to an integer
which is longer than the significand of the float and the exponent is
greater than the length of the significand. This includes
float -> (u)int32_t and double -> (u)int64_t. These were incorrectly
converted to 0.
0 commit comments