HEADS-UP: gcc-4.2 import appears to miscompile libm.
Steve Kargl
sgk at troutmask.apl.washington.edu
Sat May 26 23:32:50 UTC 2007
On Sat, May 26, 2007 at 07:09:16PM -0400, Wes Morgan wrote:
>
> Working from -O towards -O2 based on the info pages, I can "reproduce" the
> problem with "-O -fstrict-aliasing -fgcse"... However, -O2 with
> -fno-strict-aliasing by itself seems to work around the issue. At first
> glance it looks like a possible interaction between several optimizations.
>
Ths patch fixes the problem.
--- s_frexpf.c.orig Sat May 26 16:26:50 2007
+++ s_frexpf.c Sat May 26 16:28:03 2007
@@ -39,6 +39,9 @@
}
*eptr += (ix>>23)-126;
hx = (hx&0x807fffff)|0x3f000000;
+#if 0
*(int*)&x = hx;
+#endif
+ SET_FLOAT_WORD(x,hx);
return x;
}
--
Steve
More information about the freebsd-current
mailing list