* config/i386/crtfastmath.c (set_fast_math): Add "=m" for
fxsave.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103189
138bc75d-0d04-0410-961f-
82ee72b054a4
+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;