diff options
author | Roland Scheidegger <[email protected]> | 2013-08-08 19:08:57 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-08-08 19:08:57 +0200 |
commit | 43076a55c2c914a619b8b3a3f93e15a7eee6d2ad (patch) | |
tree | bdf1c343238681e6f5f28adb434ee07b0ff77311 /src/gallium/auxiliary | |
parent | 6ce54a81b2de723b71bd684b05b82989b94fb119 (diff) |
util: (trivial) fix compile error with MSVC on x86
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_cpu_detect.c | 2 |
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 c58a3dd07fc..85670129393 100644 --- a/src/gallium/auxiliary/util/u_cpu_detect.c +++ b/src/gallium/auxiliary/util/u_cpu_detect.c @@ -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)); } |