2005-08-16 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/crtfastmath.c (set_fast_math): Add "=m" for
fxsave.
From-SVN: r103189
+2005-08-16 H.J. Lu <hongjiu.lu@intel.com>
+
+ * config/i386/crtfastmath.c (set_fast_math): Add "=m" for
+ fxsave.
+
2005-08-16 Ian Lance Taylor <ian@airs.com>
* doc/tm.texi (Label Output): Correct typo.
__builtin_memset (&fxsave, 0, sizeof (fxsave));
- asm volatile ("fxsave %0" : : "m" (fxsave));
+ asm volatile ("fxsave %0" : "=m" (fxsave) : "m" (fxsave));
if (fxsave.mxcsr_mask & MXCSR_DAZ)
mxcsr |= MXCSR_DAZ;