summaryrefslogtreecommitdiff
path: root/src/hwf-x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hwf-x86.c')
-rw-r--r--src/hwf-x86.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hwf-x86.c b/src/hwf-x86.c
index 784fe2a4..ab6dacdc 100644
--- a/src/hwf-x86.c
+++ b/src/hwf-x86.c
@@ -206,6 +206,9 @@ detect_x86_gnuc (void)
if (features & 0x00000002)
result |= HWF_INTEL_PCLMUL;
#endif
+ /* Test bit 9 for SSSE3. */
+ if (features & 0x00000200)
+ result |= HWF_INTEL_SSSE3;
#ifdef ENABLE_AESNI_SUPPORT
/* Test bit 25 for AES-NI. */
if (features & 0x02000000)