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 b143f71 commit 945706aCopy full SHA for 945706a
modules/core/src/softfloat.cpp
@@ -1911,7 +1911,7 @@ static float64_t f64_sqrt( float64_t a )
1911
sigZ = ((uint_fast64_t) sig32Z<<32 | 1<<5) + ((uint_fast64_t) q<<3);
1912
/*------------------------------------------------------------------------
1913
*------------------------------------------------------------------------*/
1914
- if ( (sigZ & 0x1FF) < 1<<5 ) {
+ if ( (sigZ & 0x1FF) < 0x22 ) {
1915
sigZ &= ~(uint_fast64_t) 0x3F;
1916
shiftedSigZ = sigZ>>6;
1917
rem = (sigA<<52) - shiftedSigZ * shiftedSigZ;
0 commit comments