aboutsummaryrefslogtreecommitdiffstats
path: root/target-i386
diff options
context:
space:
mode:
authorDavid Turner <digit@android.com>2011-02-23 07:17:01 -0800
committerAndroid Code Review <code-review@android.com>2011-02-23 07:17:01 -0800
commitfa59e01ddace99351b212b8d82700156776e27e6 (patch)
tree12c5fb81bfee931eac3ceb3f3ef4869938139e0c /target-i386
parent0f72c5595152093102987722e76b91d318b4f1b7 (diff)
parent599662dc9671378c1471ce812a415bc4274736f2 (diff)
downloadexternal_qemu-fa59e01ddace99351b212b8d82700156776e27e6.zip
external_qemu-fa59e01ddace99351b212b8d82700156776e27e6.tar.gz
external_qemu-fa59e01ddace99351b212b8d82700156776e27e6.tar.bz2
Merge "x86: Add the SSSE3 feature to CPU emulation. Gcc can emit SSSE3 instructions for optimization purposes."
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/helper.c2
1 files changed, 1 insertions, 1 deletions
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,
},