math: use double_t for temporaries to avoid stores on i386
[musl] / src / math / __sindf.c
index 83c0d7a..8fec2a3 100644 (file)
@@ -25,7 +25,7 @@ S4 =  0x16cd878c3b46a7.0p-71; /*  0.0000027183114939898219064 */
 
 float __sindf(double x)
 {
-       double r, s, w, z;
+       double_t r, s, w, z;
 
        /* Try to optimize for parallel evaluation as in __tandf.c. */
        z = x*x;