Browse Source

Merge pull request #4792 from martin-frbg/issue4790

Fix core assignment in cpu detection for Intel family 15
tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
f0fc7249f1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      cpuid_x86.c

+ 3
- 3
cpuid_x86.c View File

@@ -2392,10 +2392,10 @@ int get_coretype(void){
else
return CORE_NEHALEM;
}
case 15:
if (model <= 0x2) return CORE_NORTHWOOD;
else return CORE_PRESCOTT;
}
case 15:
if (model <= 0x2) return CORE_NORTHWOOD;
else return CORE_PRESCOTT;
}
}



Loading…
Cancel
Save