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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
3 deletions
-
cpuid_x86.c
|
|
|
@@ -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; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|