mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 00:30:11 +01:00
util: (trivial) fix compile error with MSVC on x86
This commit is contained in:
parent
6ce54a81b2
commit
43076a55c2
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue