Commits

nonsensery committed a23e16199fa
[stdlib] Fix conversion from (signed) int to float in default init The default initializer for a float types initializes the value to `0` by calling a “builtin” function to convert an integer with value `0` into an “FPIEEE” float with value `0`. The integer value is signed, but the code was calling a function that expected an unsigned integer.