math: use double_t for temporaries to avoid stores on i386
[musl] / src / math / asinf.c
index 462bf04..51fe6c6 100644 (file)
@@ -26,7 +26,7 @@ qS1 = -7.0662963390e-01;
 
 static float R(float z)
 {
-       float p, q;
+       float_t p, q;
        p = z*(pS0+z*(pS1+z*pS2));
        q = 1.0f+z*qS1;
        return p/q;