summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2013-09-10 10:31:29 -0700
committerVinson Lee <vlee@freedesktop.org>2013-09-10 10:33:47 -0700
commitd93e23ba25cbfd8f77a4b3a113ca7ed3dece1e68 (patch)
treec81f3323a3533e5de006276d7d63a1f072d7b3a7 /src/gallium/auxiliary/util
parent923d3467147dd301d94ed3e6b41295fb2bcd6f47 (diff)
downloadexternal_mesa3d-d93e23ba25cbfd8f77a4b3a113ca7ed3dece1e68.zip
external_mesa3d-d93e23ba25cbfd8f77a4b3a113ca7ed3dece1e68.tar.gz
external_mesa3d-d93e23ba25cbfd8f77a4b3a113ca7ed3dece1e68.tar.bz2
util: Fix unmatched parenthesis.
Fixes MSVC build error introduced with commit 923d3467147dd301d94ed3e6b41295fb2bcd6f47. src\gallium\auxiliary\util\u_cpu_detect.c(286) : fatal error C1012: unmatched parenthesis : missing '(' Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/u_cpu_detect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_cpu_detect.c b/src/gallium/auxiliary/util/u_cpu_detect.c
index 8ac26cb..d2d1313 100644
--- a/src/gallium/auxiliary/util/u_cpu_detect.c
+++ b/src/gallium/auxiliary/util/u_cpu_detect.c
@@ -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