common/cpu_detect: Remove SSE/SSE2 detection (#1754)

This commit is contained in:
RedBlackAka 2026-02-20 21:34:03 +01:00 committed by GitHub
parent f3fb0b729e
commit 4010f4bc1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

@ -80,10 +80,6 @@ static CPUCaps Detect() {
if (max_std_fn >= 1) {
__cpuid(cpu_id, 0x00000001);
if ((cpu_id[3] >> 25) & 1)
caps.sse = true;
if ((cpu_id[3] >> 26) & 1)
caps.sse2 = true;
if ((cpu_id[2]) & 1)
caps.sse3 = true;
if ((cpu_id[2] >> 9) & 1)

View File

@ -16,8 +16,6 @@ namespace Common {
struct CPUCaps {
char cpu_string[0x21];
char brand_string[0x41];
bool sse;
bool sse2;
bool sse3;
bool ssse3;
bool sse4_1;