+2010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ * config/fpu-387.h (has_sse): Remove cw_sse, unused.
+ Use fixed-length asm.
+
2010-08-23 Tobias Burnus <burnus@net-b.de>
PR fortran/45323
if (edx & bit_SSE)
{
struct sigaction act, oact;
- unsigned int cw_sse;
act.sa_handler = sigill_hdlr;
sigemptyset (&act.sa_mask);
act.sa_flags = SA_SIGINFO;
sigaction (SIGILL, &act, &oact);
- asm volatile ("stmxcsr %0" : "=m" (cw_sse));
+ /* We need a single SSE instruction here so the handler can safely skip
+ over it. */
+ __asm__ volatile ("movss %xmm2,%xmm1");
sigaction (SIGILL, &oact, NULL);