diff options
Diffstat (limited to 'Source/Core/Common/x64CPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/x64CPUDetect.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/x64CPUDetect.cpp b/Source/Core/Common/x64CPUDetect.cpp index 64ded2df3f..e64cd9d1ee 100644 --- a/Source/Core/Common/x64CPUDetect.cpp +++ b/Source/Core/Common/x64CPUDetect.cpp @@ -159,6 +159,7 @@ void CPUInfo::Detect() if ((cpu_id[2] >> 9) & 1) bSSSE3 = true; if ((cpu_id[2] >> 19) & 1) bSSE4_1 = true; if ((cpu_id[2] >> 20) & 1) bSSE4_2 = true; + if ((cpu_id[2] >> 22) & 1) bMOVBE = true; if ((cpu_id[2] >> 25) & 1) bAES = true; // To check DAZ support, we first need to check FXSAVE support. @@ -263,6 +264,7 @@ std::string CPUInfo::Summarize() if (bAVX) sum += ", AVX"; if (bFMA) sum += ", FMA"; if (bAES) sum += ", AES"; + if (bMOVBE) sum += ", MOVBE"; if (bLongMode) sum += ", 64-bit support"; return sum; } |
