remove asm

This commit is contained in:
lepelog
2021-04-08 18:02:36 +02:00
parent f1707d3322
commit 3d26abcc08
17 changed files with 2 additions and 562 deletions
+2 -2
View File
@@ -75,9 +75,9 @@ inline f32 sqrtf(f32 mag) {
tmpd = sqrt_step(tmpd, mag);
return mag * tmpd;
} else if (mag < 0.0) {
return /* __float_nan */ __float_nan[0];
return __float_nan[0];
} else if (fpclassify(mag) == 1) {
return /* __float_nan */ __float_nan[0];
return __float_nan[0];
} else {
return mag;
}