diff options
author | Jun Nakajima <jnakajim@gmail.com> | 2011-02-10 17:43:27 -0800 |
---|---|---|
committer | Jun Nakajima <jnakajim@gmail.com> | 2011-02-10 17:43:27 -0800 |
commit | 599662dc9671378c1471ce812a415bc4274736f2 (patch) | |
tree | 36ddf8c7b8dad73f262f25b43ac028bf0f42b61c /target-i386 | |
parent | 752e385393d3d2239bb8cf9c8caf3cdd6b5e7a68 (diff) | |
download | external_qemu-599662dc9671378c1471ce812a415bc4274736f2.zip external_qemu-599662dc9671378c1471ce812a415bc4274736f2.tar.gz external_qemu-599662dc9671378c1471ce812a415bc4274736f2.tar.bz2 |
x86: Add the SSSE3 feature to CPU emulation. Gcc can emit SSSE3
instructions for optimization purposes.
Change-Id: I33ece4f4655d50cbee7fc536ec1ac09218c0ad13
Signed-off-by: Jun Nakajima <jun.nakajima@intel.com>
Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 2 |
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, }, |