diff options
author | Tobias Klausmann <[email protected]> | 2014-05-23 03:02:16 +0200 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-05-22 21:10:08 -0400 |
commit | f50361cce79beb78119d835b7a52c0c790d74077 (patch) | |
tree | a56eb79934cf0224f3512cd04685bf4eb030b48e /src | |
parent | cfec135de7f604ffe14f7a7a78157697911519ec (diff) |
mesa/x86: fix a typos in SSE4.1 detection
Commit a2fb71e23 introduced 32-bit code for SSE4.1. Fix compilation, and
make sure to check ecx for the SSE4.1 bit.
[imirkin: switch sse4.1 to look at ecx]
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/x86/common_x86.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 9c1233925bf..ac77c9d7743 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -258,8 +258,8 @@ _mesa_get_x86_features(void) _mesa_x86_cpu_features |= X86_FEATURE_XMM; if (cpu_features & X86_CPU_XMM2) _mesa_x86_cpu_features |= X86_FEATURE_XMM2; - if (cpu_features & x86_CPU_SSE4_1) - _mesa_x86_features |= X86_FEATURE_SSE4_1; + if (cpu_features_ecx & X86_CPU_SSE4_1) + _mesa_x86_cpu_features |= X86_FEATURE_SSE4_1; #endif /* query extended cpu features */ |