util: Fix unmatched parenthesis.
authorVinson Lee <vlee@freedesktop.org>
Tue, 10 Sep 2013 17:31:29 +0000 (10:31 -0700)
committerVinson Lee <vlee@freedesktop.org>
Tue, 10 Sep 2013 17:33:47 +0000 (10:33 -0700)
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>
src/gallium/auxiliary/util/u_cpu_detect.c

index 8ac26cb37705e5d610f852b1601a494c96306dff..d2d1313f8e932458b97ebab7745a50feda96950c 100644 (file)
@@ -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