mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-10 22:35:36 +00:00
i386: Remove osxsave CPUID flag name
OSXAVE is not a static feature flag: it changes dynamically at runtime depending on CR4, and it was never configurable: KVM never returned OSXSAVE on GET_SUPPORTED_CPUID, and it is not included in TCG_EXT_FEATURES. Remove OSXSAVE from the feature name array so users don't try to configure it manually. Backports commit f1a23522b03a569f13aad49294bb4c4b1a9500c7 from qemu
This commit is contained in:
parent
c07a5c06e7
commit
f294aa7cb5
|
@ -783,7 +783,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
|
|||
"fma", "cx16", "xtpr", "pdcm",
|
||||
NULL, "pcid", "dca", "sse4.1",
|
||||
"sse4.2", "x2apic", "movbe", "popcnt",
|
||||
"tsc-deadline", "aes", "xsave", "osxsave",
|
||||
"tsc-deadline", "aes", "xsave", NULL /* osxsave */,
|
||||
"avx", "f16c", "rdrand", "hypervisor",
|
||||
},
|
||||
1,
|
||||
|
|
Loading…
Reference in a new issue