We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a843ad commit 42d51ebCopy full SHA for 42d51eb
lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c
@@ -108,7 +108,7 @@ float stdlib_base_fmodf( const float x, const float y ) {
108
if ( hy < 0x00800000 ) {
109
// subnormal y
110
iy = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT;
111
- for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) {
+ for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) {
112
iy -= 1;
113
}
114
} else iy = ( hy >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS;
0 commit comments