Deleted Added
full compact
28c28
< __FBSDID("$FreeBSD: head/lib/msun/src/s_exp2f.c 175468 2008-01-18 22:19:04Z das $");
---
> __FBSDID("$FreeBSD: head/lib/msun/src/s_exp2f.c 175501 2008-01-19 21:37:14Z bde $");
29a30,31
> #include <float.h>
>
94,95c96
< float r, z;
< volatile float t; /* prevent gcc from using too much precision */
---
> float r, t, z;
118c119
< t = x + redux;
---
> STRICT_ASSIGN(float, t, x + redux);