mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 05:00:09 +01:00
util: Fix unmatched parenthesis.
Fixes MSVC build error introduced with commit
923d346714.
src\gallium\auxiliary\util\u_cpu_detect.c(286) : fatal error C1012: unmatched parenthesis : missing '('
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
This commit is contained in:
parent
923d346714
commit
d93e23ba25
1 changed files with 1 additions and 1 deletions
|
|
@ -283,7 +283,7 @@ static INLINE boolean sse2_has_daz(void)
|
|||
fxarea.mxcsr_mask = 0;
|
||||
#if (defined(PIPE_CC_GCC) || defined(PIPE_CC_SUNPRO))
|
||||
__asm __volatile ("fxsave %0" : "+m" (fxarea));
|
||||
#elif (defined(PIPE_CC_MSVC) && _MSC_VER >= 1700)) || defined(PIPE_CC_ICL)
|
||||
#elif (defined(PIPE_CC_MSVC) && _MSC_VER >= 1700) || defined(PIPE_CC_ICL)
|
||||
/* 1700 = Visual Studio 2012 */
|
||||
_fxsave(&fxarea);
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue