Commit e9e68ae3 by H.J. Lu Committed by H.J. Lu

crtfastmath.c (set_fast_math): Add "=m" for fxsave.

2005-08-16  H.J. Lu  <hongjiu.lu@intel.com>

	* config/i386/crtfastmath.c (set_fast_math): Add "=m" for
	fxsave.

From-SVN: r103189
parent f34e103d
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> 2005-08-16 Ian Lance Taylor <ian@airs.com>
* doc/tm.texi (Label Output): Correct typo. * doc/tm.texi (Label Output): Correct typo.
......
...@@ -94,7 +94,7 @@ set_fast_math (void) ...@@ -94,7 +94,7 @@ set_fast_math (void)
__builtin_memset (&fxsave, 0, sizeof (fxsave)); __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) if (fxsave.mxcsr_mask & MXCSR_DAZ)
mxcsr |= MXCSR_DAZ; mxcsr |= MXCSR_DAZ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment