util: (trivial) fix compile error with MSVC on x86

This commit is contained in:
Roland Scheidegger 2013-08-08 19:08:57 +02:00
parent 6ce54a81b2
commit 43076a55c2

View file

@ -246,7 +246,7 @@ static INLINE boolean sse2_has_daz(void)
#if (defined(PIPE_CC_GCC) || defined(PIPE_CC_SUNPRO))
asm volatile ("fxsave %0" :: "m" (fxarea));
#elif (defined(PIPE_CC_MSVC) || defined(PIPE_CC_ICL))
_fxsave(fxarea);
_fxsave(&fxarea);
#endif
return !!(fxarea.mxcsr_mask & (1 << 6));
}