From aece65ea29524757eb0a9f047216afed832e3e42 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 27 Aug 2017 13:06:54 +0200 Subject: [PATCH] Fix coretype detection for Bay Trail Atom My earlier PR #982 appears to have been incomplete in this regard - fixes #1285 --- cpuid_x86.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpuid_x86.c b/cpuid_x86.c index 103128a33..342c56525 100644 --- a/cpuid_x86.c +++ b/cpuid_x86.c @@ -1777,6 +1777,8 @@ int get_coretype(void){ break; case 3: switch (model) { + case 7: + return CORE_ATOM; case 10: case 14: if(support_avx())