diff options
author | Andre Przywara <andre.przywara@amd.com> | 2010-03-11 14:38:57 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-13 16:50:54 +0100 |
commit | 4d067ed7a778c5b903b048b5f13b8fa3873d1211 (patch) | |
tree | 1bd5a371662220932c1e4c2754523af947e5f6d7 /target-i386 | |
parent | 42673936d1b2dfc7b74a18c759f02735876a8453 (diff) |
x86/cpuid: fix missing feature set bits
This one was accidently removed with commit
bb0300dc57c10b3721451b0ff566a03f9276cc77
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpuid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-i386/cpuid.c b/target-i386/cpuid.c index ea5258fbab..9bba907598 100644 --- a/target-i386/cpuid.c +++ b/target-i386/cpuid.c @@ -754,6 +754,7 @@ int cpu_x86_register (CPUX86State *env, const char *cpu_model) env->pat = 0x0007040600070406ULL; env->cpuid_ext_features = def->ext_features; env->cpuid_ext2_features = def->ext2_features; + env->cpuid_ext3_features = def->ext3_features; env->cpuid_xlevel = def->xlevel; env->cpuid_kvm_features = def->kvm_features; { |