From 599662dc9671378c1471ce812a415bc4274736f2 Mon Sep 17 00:00:00 2001 From: Jun Nakajima Date: Thu, 10 Feb 2011 17:43:27 -0800 Subject: x86: Add the SSSE3 feature to CPU emulation. Gcc can emit SSSE3 instructions for optimization purposes. Change-Id: I33ece4f4655d50cbee7fc536ec1ac09218c0ad13 Signed-off-by: Jun Nakajima Signed-off-by: Bruce Beare --- target-i386/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-i386') diff --git a/target-i386/helper.c b/target-i386/helper.c index 5a81cb2..550b348 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -211,7 +211,7 @@ static x86_def_t x86_defs[] = { .model = 3, .stepping = 3, .features = PPRO_FEATURES, - .ext_features = CPUID_EXT_SSE3, + .ext_features = CPUID_EXT_SSE3 | CPUID_EXT_SSSE3, .xlevel = 0, .model_id = "QEMU Virtual CPU version " QEMU_VERSION, }, -- cgit v1.1