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 501b34b commit 05dd959Copy full SHA for 05dd959
src/x86/isa.c
@@ -47,7 +47,7 @@ struct cpuinfo_x86_isa cpuinfo_x86_detect_isa(
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 =
50
- (max_base_index >= 7) ? cpuidex(0x24, 0) : (struct cpuid_regs){0, 0, 0, 0};
+ (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);
53
const struct cpuid_regs processor_capacity_info = (max_extended_index >= processor_capacity_info_index)
0 commit comments