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 be3dde7 commit d09eb6fCopy full SHA for d09eb6f
ntoskrnl/ke/amd64/cpu.c
@@ -206,6 +206,7 @@ KiGetFeatureBits(VOID)
206
if (VersionInfo.Ecx.Bits.SSSE3) FeatureBits |= KF_SSSE3;
207
if (VersionInfo.Ecx.Bits.CMPXCHG16B) FeatureBits |= KF_CMPXCHG16B;
208
if (VersionInfo.Ecx.Bits.SSE4_1) FeatureBits |= KF_SSE4_1;
209
+ if (VersionInfo.Ecx.Bits.SSE4_2) FeatureBits |= KF_SSE4_2;
210
if (VersionInfo.Ecx.Bits.XSAVE) FeatureBits |= KF_XSTATE;
211
if (VersionInfo.Ecx.Bits.RDRAND) FeatureBits |= KF_RDRAND;
212
0 commit comments