From bfa092958393ec621767771f9f168e7ff973a179 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 14 Nov 2009 22:04:42 +0000 Subject: [PATCH] Remove bogus corei7 and atom entries, the family was incorrect. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88818 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Host.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp index b5d2a911dc8..0faf8feacf4 100644 --- a/lib/System/Host.cpp +++ b/lib/System/Host.cpp @@ -243,10 +243,6 @@ std::string sys::getHostCPUName() { // and manufactured using the 65 nm process. return (Em64T) ? "nocona" : "prescott"; - // FIXME: Are these bogus? - case 26: return "corei7"; - case 28: return "atom"; - default: return (Em64T) ? "x86-64" : "pentium4"; }