We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887531f commit f375d2fCopy full SHA for f375d2f
src/x86/isa.c
@@ -46,7 +46,7 @@ struct cpuinfo_x86_isa cpuinfo_x86_detect_isa(
46
(max_base_index >= 7) ? cpuidex(7, 0) : (struct cpuid_regs){0, 0, 0, 0};
47
const struct cpuid_regs structured_feature_info1 =
48
(max_base_index >= 7) ? cpuidex(7, 1) : (struct cpuid_regs){0, 0, 0, 0};
49
- const struct cpuid_regs structured_feature_info2 =
+ const struct cpuid_regs structured_feature_info2 =
50
(max_base_index >= 7) ? cpuidex(0x24, 0) : (struct cpuid_regs){0, 0, 0, 0};
51
52
const uint32_t processor_capacity_info_index = UINT32_C(0x80000008);
0 commit comments