From 41cb383f42d0cb51d8e3e25e3ecebc954dd4196f Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Sun, 31 Mar 2013 12:58:30 +0200 Subject: [PATCH] target-i386: enable PCLMULQDQ on Westmere CPU The PCLMULQDQ instruction has been introduced on the Westmere CPU. Reviewed-by: Richard Henderson Reviewed-by: Edgar E. Iglesias Signed-off-by: Aurelien Jarno --- target-i386/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index f334b54414..ee77471b66 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -687,7 +687,7 @@ static x86_def_t builtin_x86_defs[] = { CPUID_DE | CPUID_FP87, .ext_features = CPUID_EXT_AES | CPUID_EXT_POPCNT | CPUID_EXT_SSE42 | CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_SSSE3 | - CPUID_EXT_SSE3, + CPUID_EXT_PCLMULQDQ | CPUID_EXT_SSE3, .ext2_features = CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX, .ext3_features = CPUID_EXT3_LAHF_LM, .xlevel = 0x8000000A, -- 2.11.4.GIT